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

View all the Fabric Data Days sessions on demand. View schedule

Reply
Anonymous
Not applicable

Select values from two tables and paste them into new table

So i want to create a new measure called Person Absence Date that would return absence dates for a person from two tables (

'GAM Absence' and 'GAM AbsenceRequest'. 
 
I wanted to do something like this: 
Person Absence Dates =
VAR selectedName = MAX('Issues'[Assignee])
VAR selectedUID = MAXX(FILTER('GAM Users', 'GAM Users'[name] = selectedName), 'GAM Users'[PersonID])
RETURN CONCATENATEX(
     FILTER('GAM Absence',
            'GAM Absence'[UID] = selectedUID ) ,
     'GAM Absence'[Date] & ", ", ,
     'GAM Absence'[Date],
     ASC )
& CONCATENATEX(
     FILTER('GAM AbsenceRequest',
          'GAM AbsenceRequest'[UID] = selectedUID ) ,
     'GAM AbsenceRequest'[Date] & ", ", ,
     'GAM AbsenceRequest'[Date],
     ASC
)
 
This however returns a list of the dates (one row, dates seperated by commas), not dates in rows. How would i do that?
 
 
1 REPLY 1
amitchandak
Super User
Super User

@Anonymous , Based on what I got Try like

 

Person Absence Dates =
VAR selectedName = MAX('Issues'[Assignee])
VAR selectedUID = MAXX(FILTER('GAM Users', 'GAM Users'[name] = selectedName), 'GAM Users'[PersonID])
RETURN CONCATENATEX(
Distinct( Union( Summarize(FILTER('GAM Absence',
'GAM Absence'[UID] = selectedUID ) ,'GAM Absence'[Date])
, Summarize(FILTER('GAM AbsenceRequest',
'GAM AbsenceRequest'[UID] = selectedUID ) ,'GAM AbsenceRequest'[Date])))
'GAM Absence'[Date], " , "
ASC )

 

 

If this does not help
Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.