Forum Discussion
Syndicate_Admin
4 years agoAdministrator
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
Excellent, it was very useful.
Thanks a lot
2 Replies
- amitchandakSuper User
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
- Syndicate_AdminAdministrator
Excellent, it was very useful.
Thanks a lot