Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi,
I am having a problem in this measure. It says in the report: A table of multiple values was supplied where a single value was expected. So my target is to switch the measures when the invoice months is (Jan,Feb,Mar). The error pop-up when there is no selected month. Is it possible to display it monthly?
Dealer Base (Tenured):= IF(VALUES(DATE_INVOICE[MONTH]) < 4, [Dealer Base Tenured], CALCULATE([Dealer Base1], FACT_OFF_TAKE[DL_CLASSIFICATION] = "TENURED"))
SUB METRICS:
Dealer Base1:=CALCULATE(DISTINCTCOUNT(DIM_DEALERS[DEALERS_KEY]), FILTER(DIM_DEALERS,NOT(ISBLANK([Transaction Count DealerBase]))))
Dealer Base OLD:=CALCULATE(DISTINCTCOUNT(DIM_DEALERS[DEALERS_KEY]), FILTER(DIM_DEALERS,NOT(ISBLANK([Transaction Count P4M]))))
Dealer Base Tenured:=CALCULATE([Dealer Base OLD], ALL(FACT_OFF_TAKE[DL_CLASSIFICATION])) - CALCULATE([Dealer Base1], FACT_OFF_TAKE[DL_CLASSIFICATION] = "CURRENT YEAR RECRUITS")
Solved! Go to Solution.
I have already solve this problem.
Instead of using values, I used LASTNONBLANK.
IF(LASTNONBLANK(DATE_INVOICE[MONTH], DATE_INVOICE[MONTH] < 4), [Dealer Base Tenured], CALCULATE([Dealer Base1], FACT_OFF_TAKE[DL_CLASSIFICATION] = "TENURED"))
I have already solve this problem.
Instead of using values, I used LASTNONBLANK.
IF(LASTNONBLANK(DATE_INVOICE[MONTH], DATE_INVOICE[MONTH] < 4), [Dealer Base Tenured], CALCULATE([Dealer Base1], FACT_OFF_TAKE[DL_CLASSIFICATION] = "TENURED"))
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 9 | |
| 5 | |
| 5 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 24 | |
| 11 | |
| 9 | |
| 7 | |
| 6 |