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 there,
I have a fact table which contains data about the sales such as what was sold, how much sold, when sold, who sold, how many customers bought particular sold, so on and so forth. You can call that fact table contains raw data. Now I want to apply some exclusion rules on the data (exclude some data based on some rules). For example:
1) exclude sale information about product that few customers (i.e. 5) have bought.
2) exclude sale information about the product that was sold 'online'.
Initially, I thought to create two separate filters containing each rule and then apply to fact table of sales. So, I created a measure something like the following:
filter 1 =
Solved! Go to Solution.
Your error is that you can't return a table as a scalar value. You have to aggregate it first. The most common way is to wrap your FILTER in a COUNTROWS ( FILTER(Table, Table[Column] >5))
If this works for you, please mark it as the solution. Kudos are appreciated too. Please let me know if not.
Regards,
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
Your error is that you can't return a table as a scalar value. You have to aggregate it first. The most common way is to wrap your FILTER in a COUNTROWS ( FILTER(Table, Table[Column] >5))
If this works for you, please mark it as the solution. Kudos are appreciated too. Please let me know if not.
Regards,
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 63 | |
| 55 | |
| 42 | |
| 41 | |
| 23 |
| User | Count |
|---|---|
| 171 | |
| 136 | |
| 119 | |
| 79 | |
| 54 |