CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Jan 2014
    Posts
    2

    Unhappy Suppressing a text field based on date range

    I'm trying to suppress a text field when the date of a data field is less than or equal to 7/1/11. Can anyone give some tips? I right clicked on the text box, went to format field, and then clicked the formula box next to "Suppress" I started with:
    if {data field} <= #7/1/11# then
    and there's my problem.. I don't know what to put next to suppress the box

  2. #2
    Join Date
    Jan 2014
    Posts
    2

    Re: Suppressing a text field based on date range

    I found a solution to my problem. I was making this overly complicated. I deleted the text box and just made a formula that added the text I needed if my criteria was met.

  3. #3
    Join Date
    Jul 2005
    Posts
    1,083

    Re: Suppressing a text field based on date range

    However the answer is: if {data field} <= #7/1/11# then True
    JG


    ... If your problem is fixed don't forget to mark your threads as resolved using the Thread Tools menu ...

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured