Forum Discussion
Anonymous
8 years agoNot applicable
Create duplicate Rows referring above row and change the values in duplicated row
Hello Expert, I'm newbie to power query and PBI as trying to find solution for my requirement and afraid as i couldn't find it. Here is input Firstly, it should...
- 8 years ago
Anonymous
Please see attached file as well
Zubair_Muhammad
Community Champion
8 years agoHI Arjun Anonymous
You can also do it via DAX calculated TABLE
Go to Modelling Tab>> NEW TABLE
Table =
VAR temp =
SELECTCOLUMNS (
table1,
"A", [A],
"B", [B],
"C", [C],
"D", [D],
"E", [E],
"F", [D] + [G],
"G", [F] + [I],
"I", [I]
)
RETURN
UNION ( Table1, temp )- Zubair_Muhammad8 years ago
Community Champion
Anonymous
Please see attached file as well
- Anonymous8 years agoNot applicable
Thank you Zubair_Muhammad,
How can I use this function by importing the file from other workbook, which calaculation do i need to select?
Regards,
Arjun