Forum Discussion
Anonymous
5 years agoNot applicable
3 month date warning
Hi, I have two dates in my data table, one is the actual date and the other date is an expiry date for approval. I want the table to show me that when there is a 3 month difference between the...
- 5 years ago
Hi Anonymous,
I didn't change my original measure, I just changed the icons.
If you still have some question, please don't hesitate to let me known.‌‌
Best Regards,
Link
Is that the answer you're looking for? If this post helps, then please consider Accept it as the solution. Really appreciate!
Fowmy
5 years agoSuper User
Anonymous
You can create a measure as follows:
Warning =
var __diff = DATEDIFF(MAX(Table4[Delivery Date] ) , MAX(Table4[Apporval Date]),MONTH )
return
IF( HASONEVALUE(Table4[Delivery Date] ),
IF( __diff <= 3 , "🔴 " & __diff & " months" ,"🟢 " & __diff & " months" )
)
Anonymous
5 years agoNot applicable
thank you.
Is there a way to add amber for the months which are in those 3 months and keep red for all the dates that are way out of the 3 months range.
Also how can i sort the results so that all the positives are together and all the negatives are together