The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
Hello,
I want to make a new column with the values based of a existing column. At the moment I have the following columns:
1. 'TypeWorkTime' with two values: planning and realtime
2. 'Time'
So I want to make 2 new columns called planning and worktime with the values of Time, I have tried the following DAX formula but I am doing something wrong.
Planning = 'Trello cards'[Time] ; 'Trello cards'[TypeWorkTime] = "Planning"
Thanks,
Shabby
Solved! Go to Solution.
Hi,
Does this give the result you're asking for?
Planning = IF('Trello cards'[TypeWorkTime] = "Planning";'Trello cards'[Time])
Hi,
Does this give the result you're asking for?
Planning = IF('Trello cards'[TypeWorkTime] = "Planning";'Trello cards'[Time])
Thanks! It worked perfectly, I did not know u could use 'if' in dax.
User | Count |
---|---|
69 | |
64 | |
62 | |
55 | |
28 |
User | Count |
---|---|
112 | |
81 | |
65 | |
48 | |
38 |