Forum Discussion
Anonymous
6 years agoNot applicable
Display Date as text formate
Hi ,
my requirement is , I had today() date function that time it will display the today date but instead of today date i need to display as text Todaydate .
Ex : 2019-12-04 - Todaydate
when i select the todaydate text it needs to be filter today date values. kindly suggest me .
HI Anonymous ,
You can create a calculated column like below:
Column = if('Table'[DateColumn]=TODAY(),"Today Date","Not")Please give Thumbs Up for support and also accept this as a solution if it helps you!
4 Replies
- Tahreem24
Super User
HI Anonymous ,
You can create a calculated column like below:
Column = if('Table'[DateColumn]=TODAY(),"Today Date","Not")Please give Thumbs Up for support and also accept this as a solution if it helps you!- Tahreem24
Super User
Hi Anonymous ,
I am glad that I helped you.
Good Luck!
Thanks!
- Mariusz
Community Champion
Hi Anonymous
Try this.
today = FORMAT( TODAY(), "YYYY-MM-DD" )Best Regards,
Mariusz
If this post helps, then please consider Accepting it as the solution.