Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
I have created the below DAX;
New Downloads Title = var latest = LASTDATE('iOS - All App Units'[Date]) return "Total Downloads from " & latest
If i do this in it's own dax it shows the below;
iOS Latest Date = LASTDATE('iOS - All App Units'[Date])
As you can see, I would like it in GMT format no the output from the first DAX statment.
Thanks
Solved! Go to Solution.
@Anonymous - Try using the FORMAT command to wrap your LASTDATE function.
@Anonymous - Try using the FORMAT command to wrap your LASTDATE function.
Thanks Greg!
New Downloads Title =
var latest = FORMAT(LASTDATE('iOS - All App Units'[Date]),"DD/MM/YY")
return
"Total Downloads from " & latest
That worked
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
109 | |
97 | |
95 | |
38 | |
36 |
User | Count |
---|---|
150 | |
124 | |
76 | |
74 | |
53 |