Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hi,
I have data as follows:
ID | CATEGORY | SUB-CATEGORY | SALES | TARGET |
1 | A | AA | 100 | 150 |
2 | B | BB | 200 | 200 |
3 | C | CC | 300 | 200 |
4 | A | AB | 400 | 300 |
5 | B | BC | 500 | 400 |
6 | C | CA | 100 | 150 |
7 | A | CC | 200 | 150 |
8 | B | BB | 300 | 300 |
9 | C | AA | 400 | 500 |
I need to count the ID having Divide(Sales,Target) > 100%, in above case the count is 4.
Please help me to do it.
Thanks,
AshDil.
Solved! Go to Solution.
Maybe something like this?
SUMX (
VALUES ( dimID[ID] ),
IF (
CALCULATE ( SUM ( Sales[Sales ) ) > CALCULATE ( SUM ( Target[Target] ) ),
1
)
)
It's hard to say exactly without seeing your model.
Hello Dear,
If the data is the same as you uploaded it, you must occupy this DAX
Divide =
COUNTROWS(
FILTER('Table (3)',
( 'Table (3)'[Ventas] / 'Table (3)'[Blanco] ) > 1 )
)
How about counting rows where Sales > Target?
COUNTROWS ( FILTER ( Table1, Table1[Sales] > Table[Target] ) )
Hi @AlexisOlson & @Syndicate_Admin ,
If Sales & Target present in different fact tables then how to do it. The both fact tables are connected to calendar table and common column between two fact tables is ID.
Please help me to do it.
Thanks,
AshDil.
Maybe something like this?
SUMX (
VALUES ( dimID[ID] ),
IF (
CALCULATE ( SUM ( Sales[Sales ) ) > CALCULATE ( SUM ( Target[Target] ) ),
1
)
)
It's hard to say exactly without seeing your model.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
81 | |
76 | |
61 | |
37 | |
33 |
User | Count |
---|---|
99 | |
56 | |
51 | |
42 | |
40 |