The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Dear Colleagues.
I have a task to sum multiple columns (with time durations) amount (will increase) per row. And I didn't know how to do it and didn't find any solutions. My last rows of code are below. Could You please help me with it?
#"Changed Type1" = Table.TransformColumnTypes(#"Pivoted Column",{{"Maternity Leave", type duration}, {"Annual Leave", type duration}, {"Sick Leave", type duration}}),
#"Replaced Value1" = Table.ReplaceValue(#"Changed Type1",null,#duration(0, 0, 0, 0),Replacer.ReplaceValue,{"Maternity Leave", "Annual Leave", "Sick Leave"}),
Thanks in advance 🤝
Hi,
i do not understand well your problem.
If it is to sum some columns of type duration you can do this way
If the problem is another, try to explain again.
The issue is that amount of columns will be increasing for some time and now there are 35 columns, tomorrow it can be already 40 columns. So I don't know how to sum data from the dynamic range of columns. My data is just an example to understand the structure of data.
And really, nobody knows how to resolve it?
Please, post some sample data
@serpiva64 here is the link https://drive.google.com/file/d/15pAz6BYTMShXJY_h06Z8i3SLcTTWUqaL/view?usp=sharing Thanks a lot!
P.S. I've just added the column with the Total Absence Time to understand how it should be. So the last 2 rows of the code changed a little.