March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hello, I am a beginner in DAX, need help with the below problem:
Goal is to achieve the last date & no.of field columns. Last date is nothing but the attendance date of that store employee that he worked and how many days has it been from today to his/her last date.
Remember: Store supervisor, store employee# are in one dimension and date is coming from another calendar dimension table.
In which table is it best to create dax for this ??
Expected results should be like this:
Last Date | No.of days |
10-Jun-2020 | 926 days |
15-Jun-2020 | 921 days |
Below is the sample data:
Store Supervisor | Store Employee | Employee# | Attendance Date | Last date | no.of days= last date to today |
Braden | Brad | 3425 | 16-Jan-20 | ||
Braden | Brad | 3425 | 19-Jan-20 | ||
Braden | Brad | 3425 | 10-Jun-20 | 10-Jun-2020 | 926 days |
Jessica | Messi | 9879 | 24-Feb-20 | ||
Jessica | Messi | 9879 | 16-May-20 | ||
Jessica | Messi | 9879 | 15-Jun-20 | 15-Jun-2020 | 921 days |
Solved! Go to Solution.
Hi,
I do not know how your datamodel looks like, but I tried to create a sample pbix file like below.
Please check the below picture and the attached pbix file.
I hope the below can provide some ideas on how to create a solution for your datamodel.
Last date measure: =
IF (
HASONEVALUE ( Employee[Store Employee] ),
MAXX ( RELATEDTABLE ( Data ), Data[Attendance Date] )
)
Number of days measure: =
IF (
NOT ISBLANK ( [Last date measure:] ),
INT ( TODAY () - [Last date measure:] )
)
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
@kxj54590
Note : You can use
Hi,
I do not know how your datamodel looks like, but I tried to create a sample pbix file like below.
Please check the below picture and the attached pbix file.
I hope the below can provide some ideas on how to create a solution for your datamodel.
Last date measure: =
IF (
HASONEVALUE ( Employee[Store Employee] ),
MAXX ( RELATEDTABLE ( Data ), Data[Attendance Date] )
)
Number of days measure: =
IF (
NOT ISBLANK ( [Last date measure:] ),
INT ( TODAY () - [Last date measure:] )
)
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
23 | |
16 | |
15 | |
7 | |
6 |
User | Count |
---|---|
33 | |
29 | |
16 | |
13 | |
12 |