Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
dsmitha
Responsive Resident
Responsive Resident

MAX VALUE IN A ROW

Hi,

am new to PBI and PQ,  request your help regarding how to add a new column by finding  max value in a row.  table format details are attached herewith. am looking to add a column which will give the maximum collection of a busnumber by comparing collecitons on Sunday, Monday and Tuesday .

for eg: KNR01 maximum collection is on Monday so in the new column i want to show value of Monday

dsmitha_0-1648221660726.png

 

 

 

4 ACCEPTED SOLUTIONS
goncalogeraldes
Super User
Super User

Hello there @dsmitha ! To get your desire result, I would recommend the following:

1. Go to PQ, and select your "busnumber" and "SEATINGCAPACITY" columns and unpivot the other columns. You then get a "Attribute" and a "Value" column where your Attribute becomes the "Day" and the Value becomes the seatings (I suppose)

2. Close and Apply PQ

3. Add the following measure 

Max Value =
CALCULATE (
    SELECTEDVALUE ( Table[busnumber] ),
    FILTER ( Table, [Value] = MAX ( Table[Value] ) )
)

4. Add the measure to your table visual and check the results.

 

Hope this answer solves your problem!
If you need any additional help please @ me in your reply.
If my reply provided you with a solution, please consider marking it as a solution ✔️ or giving it a kudoe 👍
Thanks!

You can also check out my LinkedIn!

Best regards,
Gonçalo Geraldes

View solution in original post

Vijay_A_Verma
Super User
Super User

You can use following formula to get Max in PQ

=List.Max({[Sunday],[Monday],[Tuesday]})

 

View solution in original post

Hi Vijay,

 

Thanks a lot

 

👍

View solution in original post

Hi Goncalogeraldes,

 

Thank you so much 

👍

 

View solution in original post

7 REPLIES 7
Vijay_A_Verma
Super User
Super User

You can use following formula to get Max in PQ

=List.Max({[Sunday],[Monday],[Tuesday]})

 

Hi Vijay,

i would like to get the result as max value + the day

for eg: 6100 -> Monday

kindly advise

 

Hi Vijay,

 

Thanks a lot

 

👍

goncalogeraldes
Super User
Super User

Hello there @dsmitha ! To get your desire result, I would recommend the following:

1. Go to PQ, and select your "busnumber" and "SEATINGCAPACITY" columns and unpivot the other columns. You then get a "Attribute" and a "Value" column where your Attribute becomes the "Day" and the Value becomes the seatings (I suppose)

2. Close and Apply PQ

3. Add the following measure 

Max Value =
CALCULATE (
    SELECTEDVALUE ( Table[busnumber] ),
    FILTER ( Table, [Value] = MAX ( Table[Value] ) )
)

4. Add the measure to your table visual and check the results.

 

Hope this answer solves your problem!
If you need any additional help please @ me in your reply.
If my reply provided you with a solution, please consider marking it as a solution ✔️ or giving it a kudoe 👍
Thanks!

You can also check out my LinkedIn!

Best regards,
Gonçalo Geraldes

@goncalogeraldes @dsmitha @Vijay_A_Verma How to print the max # of that row in this case? For example: For KNR001, The max of value of Sunday, Monday, Tuesday is 6100. How can the result be 6100?

Hi goncalogeraldes,

i would like to get the result as max value + the day

for eg: 6100 -> Monday

kindly advise

Hi Goncalogeraldes,

 

Thank you so much 

👍

 

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors
Top Kudoed Authors