Forum Discussion
Anonymous
4 years agoNot applicable
Calculated Field
I've used Tableau in the past for clients. However with this new client we are using Power BI. I'm trying to create a field =if(count(distinct MissingProduct)<1 'No Missing Products', 'Missing ...
- 4 years ago
Hi,
I am not sure if I understood your question correctly, but please try the below if it suits your requirement.
create a field = IF ( DISTINCTCOUNT ( 'Tablename'[MissingProduct] ) < 1, "No Missing Products", "Missing Products" )
Jihwan_Kim
4 years agoSuper User
Hi,
I am not sure if I understood your question correctly, but please try the below if it suits your requirement.
create a field =
IF (
DISTINCTCOUNT ( 'Tablename'[MissingProduct] ) < 1,
"No Missing Products",
"Missing Products"
)
- Anonymous4 years agoNot applicable
I think this has worked. Will let you know