Forum Discussion
kimayasaraf
2 years agoNew Member
Creating a new measure
This is my data and I'm trying to fetch the day from this date like Monday, Tue, etc. So far I have tried this formula OrderDay = FORMAT([Date], "dddd"). but it's not fetching the date col...
- 2 years ago
Try the below measure.
Month = FORMAT(SELECTEDVALUE('Calendar'[Date]),"DDDD")
miTutorials
Super User
2 years agoTry the below measure.
Month = FORMAT(SELECTEDVALUE('Calendar'[Date]),"DDDD")