Forum Discussion
spamspam
7 years agoRegular Visitor
Filtering Multiple Date Columns in one Report
Hi All, I have been using Powerbi for a few months, report writing ect and i am stuck on this. I have 3 date columns, for different types of Insurances, i want to be able to see any that are ...
- 7 years ago
Hi spamspam
It seems you may try to use DATEDIFF Function to create the measures for each column as requested. For example:
UpdateWorkersComp = IF ( DATEDIFF ( NOW (), MAX ( 'Sample'[Workers comp] ), DAY ) <= 30, MAX ( 'Sample'[Workers comp] ) )Regards,
Cherie
v-cherch-msft
7 years agoMicrosoft Employee
Hi spamspam
It seems you may try to use DATEDIFF Function to create the measures for each column as requested. For example:
UpdateWorkersComp =
IF (
DATEDIFF ( NOW (), MAX ( 'Sample'[Workers comp] ), DAY ) <= 30,
MAX ( 'Sample'[Workers comp] )
)Regards,
Cherie
spamspam
7 years agoRegular Visitor
Well that now seems to be working thanks for that i can now expand further on this
Great work thanks for your help!