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!View all the Fabric Data Days sessions on demand. View schedule
I have a single table that contains both charges and payments tied to an Invoice #. The date field shows the date of the ledger transaction (be it charge or payment) I would like to create a calculated column that populates each record with the date of the charge. See below for what I'm trying to accomplish. Thank you, everyone, again, in advance, for your assistance.
Solved! Go to Solution.
Hi @pcuezze ,
We can use the following DAX query:
Date of Service =
CALCULATE (
MIN ( 'Transaction Table'[Date of Trx] ),
FILTER (
ALL ( 'Transaction Table' ),
'Transaction Table'[Invoice#] = EARLIER ( 'Transaction Table'[Invoice#] )
&& 'Transaction Table'[Trx Type] = "Charge"
)
)The result will like below:
Best Regards,
Teige
Hi @pcuezze ,
We can use the following DAX query:
Date of Service =
CALCULATE (
MIN ( 'Transaction Table'[Date of Trx] ),
FILTER (
ALL ( 'Transaction Table' ),
'Transaction Table'[Invoice#] = EARLIER ( 'Transaction Table'[Invoice#] )
&& 'Transaction Table'[Trx Type] = "Charge"
)
)The result will like below:
Best Regards,
Teige
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!