Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare 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.
Check out the October 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
114 | |
90 | |
83 | |
76 | |
64 |
User | Count |
---|---|
142 | |
112 | |
98 | |
98 | |
94 |