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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
jobf
Helper II
Helper II

LOOKUPVALUE with multiple conditions

Hello. I need to create a column that takes values ​​from a column based on more than one condition. Example:

VarietyPeriodBags
P1M120
P2M159
P3M101
P4P90
P5P95


I needed to create a column that showed the variety whose bags were larger in a given period. It would look something like this:

VarietyPeriodBags V + P
P1M120P2
P2M159P2
P3M101P2
P4P90P5
P5P95P5
2 ACCEPTED SOLUTIONS
uzuntasgokberk
Super User
Super User

Hello @jobf,

 

You can use below DAX formula.

"

pbısupportgokberkuzuntas =
Var maxval_=
CALCULATE(
MAX(Tablesil1[Bags]),
ALLEXCEPT(Tablesil1,
Tablesil1[Periods]
)
)
RETURN
LOOKUPVALUE(Tablesil1[Variety],Tablesil1[Bags],maxval_)
"

Kind Regards,
Gökberk Uzuntaş

📌 If this post helps, then please consider Accepting it as a solution and giving Kudos — it helps other members find answers faster!

🔗 Stay Connected:
📘 Medium |
📺 YouTube |
💼 LinkedIn |
📷 Instagram |
🐦 X |
👽 Reddit |
🌐 Website |
🎵 TikTok |

View solution in original post

ryan_mayu
Super User
Super User

@jobf 

you can try this

 

Column =
maxx(FILTER('Table','Table'[Period]=EARLIER('Table'[Period])&&'Table'[Bags]=maxx(FILTER('Table','Table'[Period]=EARLIER('Table'[Period])),'Table'[Bags])),'Table'[Variety])
 
11.PNG
 




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

3 REPLIES 3
Ashish_Mathur
Super User
Super User

Hi,

Write this calculated column formula

Column = LOOKUPVALUE(Data[Variety],Data[Bags],CALCULATE(MAX(Data[Bags]),FILTER(Data,Data[Period]=EARLIER(Data[Period]))),Data[Period],Data[Period])

Hope this helps.

Ashish_Mathur_0-1725332704880.png

 


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
ryan_mayu
Super User
Super User

@jobf 

you can try this

 

Column =
maxx(FILTER('Table','Table'[Period]=EARLIER('Table'[Period])&&'Table'[Bags]=maxx(FILTER('Table','Table'[Period]=EARLIER('Table'[Period])),'Table'[Bags])),'Table'[Variety])
 
11.PNG
 




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




uzuntasgokberk
Super User
Super User

Hello @jobf,

 

You can use below DAX formula.

"

pbısupportgokberkuzuntas =
Var maxval_=
CALCULATE(
MAX(Tablesil1[Bags]),
ALLEXCEPT(Tablesil1,
Tablesil1[Periods]
)
)
RETURN
LOOKUPVALUE(Tablesil1[Variety],Tablesil1[Bags],maxval_)
"

Kind Regards,
Gökberk Uzuntaş

📌 If this post helps, then please consider Accepting it as a solution and giving Kudos — it helps other members find answers faster!

🔗 Stay Connected:
📘 Medium |
📺 YouTube |
💼 LinkedIn |
📷 Instagram |
🐦 X |
👽 Reddit |
🌐 Website |
🎵 TikTok |

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors