Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I am trying to write an if statement in an expression using a YTD (Year to Date) field.
What I want to do is find out if the month "July" falls within the YTD field.
So something like.....If YTD contains July, then 1, else 0. I just don't know how to make the connection on a value that isn't actually part of the yield biut is associated with it.
Thanks in advance,
Steve
What values does your YTD field contains??
Are you asking to shift the YTD flag calculation from Jan to July Month ? or
If you already have [YTDField] in your table & we want check the YTDField in July month or not, then you can generaly IF statement like below:
IF( Month(YTDField)=7,1,0) AS YTDFlag
My YTD values are "YTD" and "NOYTD"
I have already identifed in the script which months are "YTD" and which months are "NOYTD". My issue is that I have an expression that I need to by able to identify specfic months in an if statement.
So I need to be able to write something along the lines of...
If YTD contains "July", then Expression 1, else expression 2
My YTD values are "YTD" and "NOYTD"
Can't you do this?
If(Num(Month(Today())) >= 7, Expression1, Expression2)
Where Month(Today()) will give your YTD information and 7 is used for month July
No because YTD is always changing. When next year comes July won't be associated with the YTD field until July comes. It needs to be dynamic.
I have 12 columns one for each month and each one needs to have this logic. THanks.
Hi Zagzebski,
IF( Num(Month(YTD))= 7,1,0) AS YTDFlag
or
IF( Month(YTD)= 'JUL',1,0) AS YTDFlag
Regards
Neetha
Why did you choose July right now? Is it the max date in your database? What was the logic?