Forum Discussion
Multiple Case When statement in DAX from OBIEE
- 7 years ago
Hi v-piga-msft ,
Thanks for the information, yes I created a measure,
IF (
CALCULATE (
DISTINCTCOUNT ( FactTable[Billing_ID] ),
FILTER ( FactTable, FactTable[Renewal] = "Y" ),
ALLEXCEPT (
Product,
Product[Billing_ID]
)
) = 0,
"Y",
"N"
)This works for my requirement.
Thanks,
Hi Sadapa07 ,
Have you solved your problem?
If you have solved, please always accept the replies making sense as solution to your question so that people who may have the same question can get the solution directly.
If you still need help, please share some data sample and your desired output.
Best Regards,
Cherry
Hi v-piga-msft ,
Thanks for the information, yes I created a measure,
IF (
CALCULATE (
DISTINCTCOUNT ( FactTable[Billing_ID] ),
FILTER ( FactTable, FactTable[Renewal] = "Y" ),
ALLEXCEPT (
Product,
Product[Billing_ID]
)
) = 0,
"Y",
"N"
)
This works for my requirement.
Thanks,