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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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!
Solved! Go to Solution.
@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]
)
)
)
Proud to be a 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]
)
)
)
Proud to be a Super User! |
|
That worked just fine, thank you!!
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!