Forum Discussion
Unknown Data Type Icon
- 6 years ago
Hi jmuehlenbrock ,
Based on this document, This icon is mean: Identity field: Fields with this icon are unique fields, set to show all values, even if they have duplicates.
But if you want to create a measure, we cannot just use Month('Auftragsdatum'[Auftragsdatum]) to get the month, we need to get a certain value of this field such as following:
MonthMeasureOfLatestDate = MONTH(MAX('Auftragsdatum'[Auftragsdatum]))
Best regards,
So what I have found after some further investigation is that the mentioned icon indicates a row level identifier.
(src: https://community.powerbi.com/t5/Desktop/Field-list-question/td-p/17312)
But I still don't get why I cannot use this field in a formula where a date is needed. When I put this field to the filter pane it is possible to use relative date filters, so I guess that the field itself IS recongnized as a date.
- v-lid-msft6 years agoCommunity Support
Hi jmuehlenbrock ,
Based on this document, This icon is mean: Identity field: Fields with this icon are unique fields, set to show all values, even if they have duplicates.
But if you want to create a measure, we cannot just use Month('Auftragsdatum'[Auftragsdatum]) to get the month, we need to get a certain value of this field such as following:
MonthMeasureOfLatestDate = MONTH(MAX('Auftragsdatum'[Auftragsdatum]))
Best regards,