Forum Discussion
devika
5 years agoHelper II
Displaying Today date in Card
I'm trying to dipslay today date to display in a card. I've created the measure todaydate=today(). The card is displaying todaydate not the actual 'Date' itself. Not sure what I'm missing? ...
- 5 years ago
devika , Measure
todaydate=today()
Should work. Just check you are using card visual.
You may like to show max date from a table
max Date = maxx(Table, table[date])
or
max Date = maxx(all(Table), table[date])
refer to my video on this : https://www.youtube.com/watch?v=p4r4BhWuK-c&list=PLPaNVDMhUXGaaqV92SBD5X2hk3TMNlHhb&index=53
devika
5 years agoHelper II
Thanks everyone for your time.. I was using wrong visual and moved to card and it works fine (Please bear with me this is my first Dashboard)