IF statement condition

Hi, I would like to do this in a group header:
[IF([Qry."TDWeekDay"] = 1, Dimanche)]
or
[IF([Qry."TDWeekDay"] == 1, Dimanche)]

the regroupement of the group header is
[Qry."TDWeekDay"]

but this dont work.. ;) why? ;)

thanks

Comments

  • edited 11:21PM
    what do you want to do with 'dimanche' ?

    The the best way is, if the variable 'jour' exists is like :

    if ([Qry."TDWeekDay"] = 1) then jour := 'dimanche'
  • edited 11:21PM
    Things that strike me with your 'IF' are:
    1. it is missing a parameter.
    2. if Dimanche is a variable it needs [] around it else if it is a string it needs quotes.

    try
    [IF([Qry."TDWeekDay"] = 1, 'Dimanche', 'Other')]
  • edited April 2004
    i did that:
    wrote:
    [IF([Qry."TDWeekDay"] = 1, 'Dimanche', IF([Qry."TDWeekDay"] = 2, 'Lundi', IF([Qry."TDWeekDay"] = 3, 'Mardi', IF([Qry."TDWeekDay"] = 4, 'Mercredi', IF([Qry."TDWeekDay"] = 5, 'Jeudi', IF([Qry."TDWeekDay"] = 6, 'Vendredi', IF([Qry."TDWeekDay"] = 7, 'Samedi')))))))]:

    this work fine

    thanks for your help

Leave a Comment

Rich Text Editor. To edit a paragraph's style, hit tab to get to the paragraph menu. From there you will be able to pick one style. Nothing defaults to paragraph. An inline formatting menu will show up when you select text. Hit tab to get into that menu. Some elements, such as rich link embeds, images, loading indicators, and error messages may get inserted into the editor. You may navigate to these using the arrow keys inside of the editor and delete them with the delete or backspace key.