The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
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 measure,
IF(Ind =0, Functional Amt,Transactional Amt)
Getting Error Message:
The resultset of a query to external data source has exceeded the maximum allowed size of '1000000' rows
Kindly assist me.
Solved! Go to Solution.
I tried this. But it's not working.
I have achieved this using bookmarks.
Thanks,
Siva
what's the syntax for [Ind]?
It's just a number in a table,
Name | Ind |
TA | 0 |
FA | 1 |
RA | 2 |
Hi @SivaMani,
Please try this:
Measure = IF ( SELECTEDVALUE ( Table[Ind] ) = 0, [Functional Amt], [Transactional Amt] )
Best regards,
Yuliana Gu
I tried this. But it's not working.
I have achieved this using bookmarks.
Thanks,
Siva
how did you use bookmarks?
User | Count |
---|---|
65 | |
60 | |
55 | |
54 | |
31 |
User | Count |
---|---|
180 | |
88 | |
70 | |
46 | |
45 |