Forum Discussion
prudhvi_kumar
4 years agoNew Member
Logical DAX Expressions
table A A B C D True false True false More than 100 columns i have like this, where True , False are there i need "yes" or "no" over there.Without create new columns is it possibl...
mwegener
4 years agoMost Valuable Professional
do you mean something like this?
Col A = IF(CONTAINS('Table A','Table A'[A], TRUE()),"yes","no")
- prudhvi_kumar4 years agoNew Member
hi mwegener
I Agree. But i have 100 columns. when i use DAX 100 extra columns will create over there(through using SWITCH/IF) is there any other option to write mesuare for all togather in one shot?