Forum Discussion
SivaMani
7 years agoResident Rockstar
DirectQuery: Data source has exceeded the maximum allowed size of '1000000' rows
Hi, I have two measures, Functional Amt - SUM(FA), Transactional Amt = SUM(TA) It works fine when I use these measures directly in visuals. However, it isn't working when I use the below...
- 7 years ago
Stachu
7 years agoCommunity Champion
what's the syntax for [Ind]?
- SivaMani7 years agoResident Rockstar
It's just a number in a table,
Name Ind TA 0 FA 1 RA 2 - v-yulgu-msft7 years agoMicrosoft Employee
Hi SivaMani,
Please try this:
Measure = IF ( SELECTEDVALUE ( Table[Ind] ) = 0, [Functional Amt], [Transactional Amt] )
Best regards,
Yuliana Gu
- SivaMani7 years agoResident Rockstar