Forum Discussion
Anonymous
8 years agoNot applicable
pb version
Hello everyone, I got one more problem I got one data table like this : No Archived Amount Amount Arch Measure Ord1 NO 10€ 0€ ...
- 8 years ago
Hi bapt69,
To achieve your requirememt, you can create a calculate column instead using DAX below:
Column = IF(Table1[Amount] = 0, Table1[Amount Arch], Table1[Amount])
Regards,
Jimmy Tao
v-yuta-msft
8 years agoCommunity Support
Hi bapt69,
To achieve your requirememt, you can create a calculate column instead using DAX below:
Column = IF(Table1[Amount] = 0, Table1[Amount Arch], Table1[Amount])
Regards,
Jimmy Tao