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 good day,
Can pls someone help me on my measure. I have table i want to get the max no. of pax per week
My Table:
Output using measure
Thank you
Solved! Go to Solution.
Hi @AllanBerces - calculate the maximum number of Pax per week for each Trade , you can create below measure
please replace with your table name as per your model.
output:
Hope it helps.
Proud to be a Super User! | |
Hi @AllanBerces ,
--returns the max per week regardless of other columns in the visual
CALCULATE ( MAX ( 'table'[pax] ), ALLEXCEPT ( 'table', 'table'[Week No.] ) )
--returns the max per week per trade per area
CALCULATE (
MAX ( 'table'[pax] ),
ALLEXCEPT ( 'table', 'table'[Week No.], 'table'[trade], 'table'[area] )
)
Proud to be a Super User!
Hi @AllanBerces - calculate the maximum number of Pax per week for each Trade , you can create below measure
please replace with your table name as per your model.
output:
Hope it helps.
Proud to be a Super User! | |
Hi @rajendraongole1 @danextian thank you for the reply for the solutions on my query.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
123 | |
78 | |
49 | |
38 | |
37 |
User | Count |
---|---|
196 | |
80 | |
70 | |
51 | |
42 |