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
Hello, i have this in a calculated column and working perfect , i need to convert it to a measure
the search in my report is the transaction number : TRX_Num , i need to see the pay status for each single line in a measure not in columns for performance .
Formula :
Solved! Go to Solution.
Hi @bhelou
Please provide your PBIX file or data.
Regards
Phil
Proud to be a Super User!
Hi @bhelou ,
You can use the following measure:
Pay_Status =
IF (
ISBLANK (
LOOKUPVALUE (
AWPT_AR_CASH_RECEIPTS_LINES[TRX_NUMBER],
AWPT_AR_CASH_RECEIPTS_LINES[TRX_NUMBER], MAX ( AWPT_AR_TRANSACTIONS_LINES[TRX_NUMBER] )
)
),
"Not Paid",
"Paid"
)
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Best Regards,
Dedmon Dai
Hi @bhelou ,
You can use the following measure:
Pay_Status =
IF (
ISBLANK (
LOOKUPVALUE (
AWPT_AR_CASH_RECEIPTS_LINES[TRX_NUMBER],
AWPT_AR_CASH_RECEIPTS_LINES[TRX_NUMBER], MAX ( AWPT_AR_TRANSACTIONS_LINES[TRX_NUMBER] )
)
),
"Not Paid",
"Paid"
)
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Best Regards,
Dedmon Dai
Thanksss , working great
Hi @bhelou
Please provide your PBIX file or data.
Regards
Phil
Proud to be a Super User!
Thank you very much , i solved it ,
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!