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
I want to create a measure to do a new column which creates IF PaidOffDate is blank then LoanAmount is blank otherwise LoanAmount is the same Value. I have posted of the desired result on that i got on excel
Solved! Go to Solution.
Hi @ligalbert !
Try the following:
IF( PaidOffDate = BLANK(), BLANK(), LoanAmount )
Considering PaidOffDate is a measure.
Let me know if that helps!
Hi @ligalbert ,
Has your problem been solved? If it is solved, please mark a reply which is helpful to you.
If the problem is still not resolved, please try the measure.
Measure =
IF (
MAX ( 'Table'[PaidOffDate] ) = BLANK (),
BLANK (),
SUM ( 'Table'[LoanAmount] )
)
Best Regards,
Winniz
Hi @ligalbert !
Try the following:
IF( PaidOffDate = BLANK(), BLANK(), LoanAmount )
Considering PaidOffDate is a measure.
Let me know if that helps!
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!
| User | Count |
|---|---|
| 102 | |
| 79 | |
| 57 | |
| 51 | |
| 46 |