Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I Have this condition in Excel: =IF(Z6="NA",0,3), How do I Translate this to DAX Language?
Solved! Go to Solution.
Hi @ivansitoiv ,
For creating a column you could try:-
column = IF('table'[column_which_represent_z6]="NA",0,3)
and for measure it could be like this
Measure = IF(max('table'[column_which_represent_z6])="NA",0,3)
BR,
Samarth
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
Hi @ivansitoiv ,
For creating a column you could try:-
column = IF('table'[column_which_represent_z6]="NA",0,3)
and for measure it could be like this
Measure = IF(max('table'[column_which_represent_z6])="NA",0,3)
BR,
Samarth
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
Hi,
I assume you want to create a calculated column.
Please check the below DAX formula whether it suits your requirement.
Excel CC =
IF ( 'table name'[Z6 column] = "NA", 0, 3 )
The formula is to create a measure or calculated column? because im receiving this error: DAX comparison do not support comparing values of type integer with values of type text
User | Count |
---|---|
25 | |
12 | |
8 | |
6 | |
6 |
User | Count |
---|---|
26 | |
12 | |
12 | |
10 | |
6 |