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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Please help me to correct Pipeline in Lookup and If-condition
Thank you
Solved! Go to Solution.
Hi @HelloTheSun ,
Try to modify your formula:
Assuming the column name in the data warehouse is [col: 1], the correct expression would be:
@equals(activity('Lookup1').output.firstRow['col'], '1')
Or if the column name is indeed 1:
@equals(activity('Lookup1').output.firstRow['1'], '1')
Best Regards,
Adamk Kong
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @HelloTheSun ,
Try to modify your formula:
Assuming the column name in the data warehouse is [col: 1], the correct expression would be:
@equals(activity('Lookup1').output.firstRow['col'], '1')
Or if the column name is indeed 1:
@equals(activity('Lookup1').output.firstRow['1'], '1')
Best Regards,
Adamk Kong
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.