Forum Discussion
DM0010
3 years agoRegular Visitor
Multiple IF functions
Hello everyone, I have a question wrt multiple IF functions in DAX. The situation is as follows: I have a general ledger table with all the account numbers of a company. Every row in the table r...
henkvankester
3 years agoHelper I
Maybe you should create a new measure like:
NameMeasure= IF(CODEDC = D, [Bedrag] *-1,
IF(CODEDC = C, [Bedrag], BLANK()))
When you create a table with REKENING and the measure you should be able to see the real amounts.
Everything without a C or D in column CODEDC will not be taken into account.