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

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
LIWO
New Member

DAX Measure Help

Hello

I've got this setup in Power BI:

LIWO_0-1721976386871.png

I'm trying to create a measure, which can provide the "startdate" of a specific "type" (Tabel 1) for a visual with a list of "SocialSecurityNo" from Tabel 3.
But I can't seem to get the date for a specific student - I get the same (max)date for everybody. I have tried a lot of formulas and completely lost track of them 😉
Anyone who can help me with a measure, I can try?

 

Regards,
Lisa

1 ACCEPTED SOLUTION

i think your data model is not good.

 

table 2 and 3 are linked by student ID. That is a many to many relationship.

ID 300 may have two social security no and each one will have two agreeement?

 

11.PNG

 

I used a,b,c,d,e for social security No.

measure =
VAR _id=maxx(FILTER(Table2,Table2[StudentID]=max(Table3[StudentID])),Table2[AgreementID])
VAR _type=maxx(FILTER(Table1,Table1[AgreementID]=_id),Table1[Type])
return if(_type="VFO",maxx(FILTER(Table1,Table1[AgreementID]=_id),Table1[Start]),blank())
 
11.PNG
 
pls see the attachment below.
 

 





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

Proud to be a Super User!




View solution in original post

6 REPLIES 6
LIWO
New Member

Thank you so much @ryan_mayu . It works perfectly 🙂

LIWO
New Member

Thank you so much @ryan_mayu - it works perfectly! 

LIWO
New Member

I have a visual with SocialScurityNo.
I need to add for exaple the startdate for type "VFO" if the student has any "type VFO" - else it need to be blank.
Do this answer your question?

 

i think your data model is not good.

 

table 2 and 3 are linked by student ID. That is a many to many relationship.

ID 300 may have two social security no and each one will have two agreeement?

 

11.PNG

 

I used a,b,c,d,e for social security No.

measure =
VAR _id=maxx(FILTER(Table2,Table2[StudentID]=max(Table3[StudentID])),Table2[AgreementID])
VAR _type=maxx(FILTER(Table1,Table1[AgreementID]=_id),Table1[Type])
return if(_type="VFO",maxx(FILTER(Table1,Table1[AgreementID]=_id),Table1[Start]),blank())
 
11.PNG
 
pls see the attachment below.
 

 





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

Proud to be a Super User!




Sorry. In tabel 3 there is only one Student ID per SpcialSecurityNo, so it will be fine, I guess. I will try to translate your measure into my datamodel 🙂 

ryan_mayu
Super User
Super User

what's the expected output based on the sample data you provided?





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

Proud to be a Super User!




Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.