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 2 different files - they are connected in relationships by Account name but there may be multiple account names in the "Service 3 - Opps" file.
This is the column measure I have started:
Solved! Go to Solution.
Hi,
Try this
=if(isblank(LOOKUPVALUE('Service 3 - Contract Opps'[Account Name],'Service 3 - Contract Opps'[Account Name], 'Service 4 - Contract accts'[Account Name])),0,1)
Hope this helps.
Hi,
Write this calculated column formula in the Service 4 - Contract accts table
=LOOKUPVALUE('Service 3 - Contract Opps'[Account Name],'Service 3 - Contract Opps'[Account Name], 'Service 4 - Contract accts'[Account Name])
Does this work?
This works but it brings in the lookup value text of the account name. I want to create a column where if the name appears in the other table, it gets a value of 1.00 and if not, it get a value of 0.00.
Hi,
Try this
=if(isblank(LOOKUPVALUE('Service 3 - Contract Opps'[Account Name],'Service 3 - Contract Opps'[Account Name], 'Service 4 - Contract accts'[Account Name])),0,1)
Hope this helps.
try this
Proud to be a Super User!
I think it is more of an "IfError" expression because the corresponding lookup just may not be there, not necessarily blank. but when I try to input that type of formular I get an error "Expressions that yield vairant data-type cannot be used to define calculated columns."
you can have two data type in one column. i guess the account name is text.
you can try this
Proud to be a Super User!
This also brings in the account name when the Iferror expression with the lookup is true. I want it to bring in a 1.0 value
pls try this
Proud to be a Super User!