Calculate Completed Refunds - DAX Challenge

preview_player
Показать описание
Here to another interesting DAX / Data Modeling problem. Enjoy!

- - - - Download Data - - - -

- - - - Post your answers here - - - -

- - - - My Courses - - - -
✔️ Mastering DAX in Power BI -

✔️ Power Query Course-

✔️ Master Excel Step by Step-

✔️ Business Intelligence Dashboards-

---
Artist Attribution
Music By: "After The Fall"
Track Name: "Tears Of Gaia"
Published by: Chill Out Records
Official After The Fall YouTube Channel Below
License: Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)
Рекомендации по теме
Комментарии
Автор

Thanks for the challange.
a calculated column in Sales:

completed refunds amount =
VAR __table =
FILTER(
RELATEDTABLE(Refunds),
Refunds[Refund Status] = "Complete"
)
RETURN
IF( COUNTROWS(__table) = 2, SUMX(__table, Refunds[Units Refunded])) * RELATED(Products[Price])

janwillemvanholst
Автор

Next 2 da dudes in da cube you're the best bro 💯 💪

jsorrisone
Автор

Thanks for the challenge Chandeep! Looking forward to giving it a try and viewing the solutions. Thumbs up!!!

wayneedmondson
Автор

bro how to do page navigation using dax

ahmadalishaik
Автор

Done! 👍 can you Post the answer for reference?

sane
Автор

Sir some one ask with me in interview ।। How can calculate those person who got the salary after employees was regined.

rakeshchaudhary
Автор

hi chandeep, you are being awesome and i havebeen watching your videos on a daily basis,
i have encounter a problem,
i have 2 table and have similar columns in both the table and want to give a flag in one of those table that
if the common values in those table exists in a first table,
i want to give a flag in the first table that if the value is common than it should give 1 if not than 0

amitvaishnav