Forum Discussion
Date on Card Visual or Text Box
- 9 years ago
Do want to always have the day before the "report date" of the latest surgery appeared in a card?
If so, you can add a calculated column which always display the "yesterday" of report date. Then create a measure return the max "Yesterday" and have it displayed in Card Visual.
Column = DATEADD(SurgeryMaster[Sx. Date],1,day)
measure = MAX(SurgeryMaster[Column])
Regards,
Do want to always have the day before the "report date" of the latest surgery appeared in a card?
If so, you can add a calculated column which always display the "yesterday" of report date. Then create a measure return the max "Yesterday" and have it displayed in Card Visual.
Column = DATEADD(SurgeryMaster[Sx. Date],1,day)
measure = MAX(SurgeryMaster[Column])
Regards,
- deepvibha9 years agoAdvocate II
Heartfelt Thanks. That Worked.....
Also I seek help in suppressing the Zero values in Visualizations.
Thanks Again.
Regards,