Hello professionals. I am new to DAX. I want to convert this tableau formula into DAX appreciate your help:
STR(if ISNULL([Student ID]) then [Registration Number] else [Student ID] END)
Thank you for your time and for helping me with my learning process.
Solved! Go to Solution.
Hi @naftycs ,
I have never used Tableau, but I'll give it a shot. My assumption is that both Student ID and Registration Number have the same data type plus that you'd want to create a calculated column.
Calculated Column = IF ( Table[Student ID] = BLANK(), Table[Registration Number], Table[Student ID] )
Let me know if this helps 🙂
/Tom
https://www.tackytech.blog/
https://www.instagram.com/tackytechtom/
Proud to be a Super User!
Hi @naftycs ,
I have never used Tableau, but I'll give it a shot. My assumption is that both Student ID and Registration Number have the same data type plus that you'd want to create a calculated column.
Calculated Column = IF ( Table[Student ID] = BLANK(), Table[Registration Number], Table[Student ID] )
Let me know if this helps 🙂
/Tom
https://www.tackytech.blog/
https://www.instagram.com/tackytechtom/
Proud to be a Super User!
User | Count |
---|---|
99 | |
32 | |
30 | |
19 | |
15 |
User | Count |
---|---|
104 | |
24 | |
21 | |
20 | |
17 |