Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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 |
---|---|
12 | |
11 | |
8 | |
6 | |
5 |
User | Count |
---|---|
25 | |
19 | |
16 | |
10 | |
7 |