Forum Discussion
jhen_1020
8 years agoRegular Visitor
Help with If Statement
Hi, I am new to Power Bi and currently havving challenges in creating an IF Statement. Here's what I am trying to accomplish. Status column is in Table 1 Sales count, Price and Quanti...
- 8 years ago
Hi jhen_1020,
If [Status], [Sales count], [Price] and [Quantity] are all added into the same visual, please try this similar measure:
If Status = IF ( SELECTEDVALUE ( 'Table1'[Status] ) = "OLD", SELECTEDVALUE ( Table2[Price] ) / SELECTEDVALUE ( Table2[Sales Count] ), SELECTEDVALUE ( Table2[Price] ) / SELECTEDVALUE ( Table2[Sales Count] ) * SELECTEDVALUE ( Table2[Quantity] ) )Regards,
Yuliana Gu
Phil_Seamark
Microsoft Employee
8 years agoHI jhen_1020
Are you trying to add a calculated measure or column? If you are trying to add a calculated column, which of the tables are you adding it to?
- jhen_10208 years agoRegular Visitor
Hi, I am trying to add a measure.