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

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
ThijsvdZaan
New Member

Calculated Column

Hey there,

 

I am very new in PowerBI and I could use some help with this (hopefully) simple task. 

 

I have 2 tables. 

 

Table 1: Activities

Large table with many columns. Most important for now is the 'start' column, with the date of the record submission, and the 'Village' column indicating which village was visited. There will be multiple records in the table for each village. 

 

Table 2: Villages

A table with a number of village names. Each village will be in here only once. 

 

What I'm trying to do, is to find the most recent record (visit) for each village in the activity table. I thought I'd calculate a new column in the Village table, and fetch the most recent record for that village from the Activity table, but I can't figure out how to do this. Note that it can be possible that some villages are never visited, so then then won't be found in any of the records in the Activity table. 

 

Hopefully someone can help me!

 

Thanks in advance!

 

 

1 ACCEPTED SOLUTION
bhanu_gautam
Super User
Super User

@ThijsvdZaan , In the Villages table, create a new calculated column to find the most recent visit date for each village. You can do this by using the following DAX formula:

DAX
MostRecentVisit =
IF(
ISBLANK(
CALCULATE(
MAX(Activities[start]),
FILTER(
Activities,
Activities[Village] = Villages[Village]
)
)
),
"No Visits",
CALCULATE(
MAX(Activities[start]),
FILTER(
Activities,
Activities[Village] = Villages[Village]
)
)
)




Did I answer your question? Mark my post as a solution! And Kudos are appreciated

Proud to be a Super User!




LinkedIn






View solution in original post

2 REPLIES 2
bhanu_gautam
Super User
Super User

@ThijsvdZaan , In the Villages table, create a new calculated column to find the most recent visit date for each village. You can do this by using the following DAX formula:

DAX
MostRecentVisit =
IF(
ISBLANK(
CALCULATE(
MAX(Activities[start]),
FILTER(
Activities,
Activities[Village] = Villages[Village]
)
)
),
"No Visits",
CALCULATE(
MAX(Activities[start]),
FILTER(
Activities,
Activities[Village] = Villages[Village]
)
)
)




Did I answer your question? Mark my post as a solution! And Kudos are appreciated

Proud to be a Super User!




LinkedIn






That worked just fine, thank you!!

 

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

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

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

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.