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
Pan_Forex
Helper III
Helper III

Least value for and if

Hello! I am trying to write a function that will return the smallest value from another column if there is one condition. I have 3 columns [seller], [minute] and [value]. I would like to find, for each vendor, the smallest value of [minute] if [value] is equal to 0 and never again later takes a value other than 0. 

SellerMinuteValueMeasure
Seller A    1               10 2
Seller B103
Seller C101
Seller A202
Seller C201
Seller B243
Seller A302
Seller B303
Seller C301
Seller A402
Seller B403
Seller C401


In the above case, the new column measure should look like this: Seller A: minute = 2, Seller B: minute = 3, Seller C: minute = 1

2 REPLIES 2
FreemanZ
Super User
Super User

hi @Pan_Forex ,

 

not sure if i fully get you, try to plot a table visual with seller column and a measure like:

measure = 
MAXX(
    FILTER(data, data[value]<>0),
    data[Minute]
)+1

 

it worked like:

FreemanZ_0-1700057301235.png

Thank you for your reply. I forgot to add that this should be a feature of the new column. This should look for the smallest minute value for each seller. 

Helpful resources

Announcements
PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

Top Solution Authors