The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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 |
---|---|
16 | |
8 | |
7 | |
6 | |
6 |
User | Count |
---|---|
26 | |
13 | |
12 | |
8 | |
8 |