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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
I have a column named invoice_date which is of type date .Some times in invoice_date value will be empty.So, i want to create measure by check whether that value is empty means i want add a value from another column (Policy_expiry_date) which is of type date else i have to take value from invoice_date itself.Plse help me.
Solved! Go to Solution.
@nisha_deepak - Create a column as below-
@nisha_deepak , Nor very clear
check blank
calculate(count(Table[Policy_expiry_date]), isblank(Table[invoice_date]))
check not blank
calculate(count(Table[Policy_expiry_date]), not(isblank(Table[invoice_date])))
checking invoice_date is empty or not ,if empty means take value from policy_expiry_date,
then put it in measure column.Is it possible.plse help me?
@nisha_deepak - Create a column as below-
thanks.It helps me to solve my problem
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.