Forum Discussion
HugoDataAve2023
2 years agoFrequent Visitor
FIRSTDATE doesn't work as expected
I created a simple measure = FIRSTDATE(Table[column].[Date]). In this column the first date is 2023-12-04, but when I put in the visual Card, it shows 2023-01-01. I having seen some people with probl...
- 2 years ago
hi, HugoDataAve2023
problem occure due to (.[Date]) part
try onlymeasure = FIRSTDATE(Table[column])
check below image and check my first date in left table
without (.[Date])
with (.[Date])
Dangar332
2 years agoResident Rockstar
hi, HugoDataAve2023
problem occure due to (.[Date]) part
try only
measure = FIRSTDATE(Table[column])
check below image and check my first date in left table
without (.[Date])
with (.[Date])
HugoDataAve2023
2 years agoFrequent Visitor
It work. Thanks.