Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hi guys, i´m a new user in power BI, and i need help to make a new measure, please,
this is my problem:
i have this table
Fecha | N° Carrera | Posición | Dividendo |
22-08-2018 | 1 | 1 | 3,4 |
22-08-2018 | 1 | 2 | 4,6 |
22-08-2018 | 1 | 3 | 5,7 |
22-08-2018 | 1 | 4 | 3,7 |
22-08-2018 | 1 | 5 | 5,9 |
22-08-2018 | 2 | 1 | 10 |
22-08-2018 | 2 | 2 | 12 |
22-08-2018 | 2 | 3 | 2,5 |
22-08-2018 | 2 | 4 | 3,4 |
22-08-2018 | 3 | 1 | 1,7 |
22-08-2018 | 3 | 2 | 4,7 |
22-08-2018 | 3 | 3 | 5,6 |
22-08-2018 | 3 | 4 | 2,7 |
22-08-2018 | 3 | 5 | 10,8 |
and the measure is for count how many times in the same "Fecha" and in the same "N° Carrera" for "Posición" = 1, the parameter "Dividendo" is the minimum value, for this example is 2, the dividendo 3,4 and 1,7 of N° Carrera 1 and 3
Regards
Solved! Go to Solution.
You need column if you also have to see where are the minimum values i.e. 3.4 and 1.7
and then you can create a measure to have the count as well.
Check = IF(AND(CALCULATE(MIN('Table'[Dividendo]),FILTER('Table','Table'[Fecha]=EARLIER('Table'[Fecha])),FILTER('Table','Table'[N° Carrera]=EARLIER('Table'[N° Carrera]))) = 'Table'[Dividendo],'Table'[Posición]=1), 1, 0)
and for Measure = SUM('Table'[Check])
You need column if you also have to see where are the minimum values i.e. 3.4 and 1.7
and then you can create a measure to have the count as well.
Check = IF(AND(CALCULATE(MIN('Table'[Dividendo]),FILTER('Table','Table'[Fecha]=EARLIER('Table'[Fecha])),FILTER('Table','Table'[N° Carrera]=EARLIER('Table'[N° Carrera]))) = 'Table'[Dividendo],'Table'[Posición]=1), 1, 0)
and for Measure = SUM('Table'[Check])
Thanks Arvinds
The solution Works OK for me
Thanks Arvins
The solution Works OK for me
Can you post the expected output as well in a table format as shown above? That will help.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
144 | |
80 | |
65 | |
52 | |
49 |
User | Count |
---|---|
212 | |
89 | |
80 | |
69 | |
60 |