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 want to substitute the data on a column (IF numero = 11 THEN 6), and it would be easy with a calculated column. The problem is that I can't make one (Since I'm using live connection). Is there any other way I can do this?
Solved! Go to Solution.
Hi @Anonymous
When you use a live connection, you cannot modify its model, so you cannot create calculated columns, and you can create measures.
e.g
Measure=If(SELECTEDVALUE('Table'[numero])=11,6)
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous
When you use a live connection, you cannot modify its model, so you cannot create calculated columns, and you can create measures.
e.g
Measure=If(SELECTEDVALUE('Table'[numero])=11,6)
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.