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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I need to create Calculate Column in Direct Query Mode. How to create Calculate Column in Direct Query Mode?
I am sharing a Demo File in Below link:
https://drive.google.com/open?id=10-EuA6iNQi3fYoLuIqYBeWawIwHhoNTm
Solved! Go to Solution.
Hello @mohittimpus ,
You can create calculated column by going to Modelling>New Column.
Please let me know if this didn't help.
I can make the calculate column but when I try to make the calculate colaumn like this it not not give me correctr result.
No Injury / Injury = IF ('''SHC Fall Data$'''[Outcomes] = "Fall1-None"
|| '''SHC Fall Data$'''[Outcomes] = "Fall1-None Fall1-None"
|| '''SHC Fall Data$'''[Outcomes] = "Fall1-None No Injor",
"No Injury", IF('''SHC Fall Data$'''[Outcomes] = "Fall2-Mild/Minor" || '''SHC Fall Data$'''[Outcomes] = "Fall2-Mild/Minor Fall2-Mild/Minor"
|| '''SHC Fall Data$'''[Outcomes] = "Fall2-Mild/Minor Fall2-Mild/Minor Fall2-Mild/Minor"
|| '''SHC Fall Data$'''[Outcomes] = "Fall2-Mild/Minor *** Fall2-Mild/Minor"
|| '''SHC Fall Data$'''[Outcomes] = "Fall3-Moderate"
|| '''SHC Fall Data$'''[Outcomes] = "Fall4-Major"
|| '''SHC Fall Data$'''[Outcomes] = "Fall5-Death","Injury"
))
In above Dax that hard code value is not reconsigned in Direct query and new column is not give result "injuery" or "Non injuery".
Same code is working prefectly in import format.