Forum Discussion

Syndicate_Admin's avatar
Syndicate_Admin
Administrator
4 years ago
Solved

Measure does not recognize table field

Hello, I am trying to create a new measure but it does not recognize the fields of the tables.

In this case he wants me to show 0, instead of "blank" when the field is empty.

But in problem I have it with any DAX function that I want to use, IT DOES NOT RECOGNIZE THE NAME OF THE FIELDS.

Thank you

2 Replies

  • Syndicate_Admin , Create a new column, You are creating a measure when you need aggregation

    new column =

    Coalesce([Lead Time],0)

     

     

    Measure = Sum(Table[Lead Time])+0