Forum Discussion

jmuehlenbrock's avatar
jmuehlenbrock
New Member
6 years ago
Solved

Unknown Data Type Icon

Hi folks,   I am pretty new to Power BI so this might be a very beginner question. When I tried to use PBI time functions like MONTH() in calculated fields (measures) I noticed that I cannot select...
  • v-lid-msft's avatar
    v-lid-msft
    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,