Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
Hi
this is my table
Hotel | Sale | Ownership | Rental duration |
By the sea | 1 | Owned | |
Forest | 3 | Rental | 5 months |
Everest | 4 | Owned | |
JTC | 5 | Rental | 10 months |
Summer | 4 | Rental | 8 months |
Family | 3 | Rental | 5 months |
it has relationship with below table:
Rental duration | Length |
5 months | short |
8 months | medium |
10 months | long |
how to write DAX formula to calculate the sum of the sale for Owned and Rental , in which Rental only include medium and long length?
thanks
thanks.
Solved! Go to Solution.
@ktt777 solution is attached.
I would ❤ Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos whoever helped to solve your problem. It is a token of appreciation!
⚡Visit us at https://perytus.com, your one-stop shop for Power BI related projects/training/consultancy.⚡
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
@ktt777 try this DAX measure
Total Sales =
CALCULATE (
SUM ( Data[Sale ] ),
FILTER (
Data,
Data[Ownership ] = "Owned" ||
RELATED ( Rental[Length] ) IN { "long", "medium" }
)
)
I would ❤ Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos whoever helped to solve your problem. It is a token of appreciation!
⚡Visit us at https://perytus.com, your one-stop shop for Power BI related projects/training/consultancy.⚡
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
What if my data is :
Hotel | Sale | Ownership | Rental duration |
By the sea | 1 | Owned by government | |
Forest | 3 | Rental from government | 5 months |
Everest | 4 | Owned by private | |
JTC | 5 | Rental from partner | 10 months |
Summer | 4 | Rental from private | 8 months |
Family | 3 | Rental from government | 5 months |
and it related to 2 below table :
Rental duration | Length |
5 months | short |
8 months | medium |
10 months | long |
Ownership | Owership Summary |
Owned by government | Owned |
Rental from government | Rental |
Owned by private | Owned |
Rental from partner | Rental |
Rental from private | Rental |
Again, how to write DAX formula to calculate the sum of the sale for Owned and Rental , in which Rental only include medium and long length?
thanks
@ktt777 solution is attached.
I would ❤ Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos whoever helped to solve your problem. It is a token of appreciation!
⚡Visit us at https://perytus.com, your one-stop shop for Power BI related projects/training/consultancy.⚡
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.