Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have a field that shows the date and in case the date is today or yesterday i would like to put in a new field sentnce "The date is today or yesterday based on that...."
how could i do it?
That might be it... try this
If(Match(Floor(MakeDate(1988) + PURTRANSDATECDP/1440), Today(1), Today(1)-1), 'Waiting for interface run') as ReasonCDP,
May be this
LOAD Date, If(Match(Date, Today(), Today()-1), 'The date is today or yesterday based on that', 'N/A') as NewField FROM ...;
If(Match(PURTRANSDATECDP, Today(), Today()-1), 'Waiting for interface run') as ReasonCDP,
didnt work 😞
Would you be able to share a list box with PURTRANSDATECDP field? Also, could you try this
If(Match(Floor(PURTRANSDATECDP), Today(), Today()-1), 'Waiting for interface run') as ReasonCDP,
This to make sure that we remove time component if PURTRANSDATECDP is a timestamp
still give no value (attached pic)
Can you try this
If(Match(Floor(PURTRANSDATECDP), Today(1), Today(1)-1), 'Waiting for interface run') as ReasonCDP,
thank you very much for your help, still doesnt work , i think it doesnt work maybe becouse my date field is calculated , im adding the calculation of the field .
same result "-" value
That might be it... try this
If(Match(Floor(MakeDate(1988) + PURTRANSDATECDP/1440), Today(1), Today(1)-1), 'Waiting for interface run') as ReasonCDP,
it working, in case i want to add another condetion if field is bigger than other?
exmaple in my pic 🙂
you are awsome!
sorry wrong picture, add new one