I have a question for a table on Power BI. In fact, I have a first colums that is the name or the id of a process, the 2nd one, that is the number of the step of the process, and the 3rd one that is the time of the step. Example :
Column 1: [A, A, B, A, C, B, C]
Column 2: [1, 2, 1, 3, 1, 2, 2]
Column 3: [8, 9, 6, 10, 18, 7, 19]
I want it to appear as a table with the first colum the process (without duplicate), and new columns with the steps and associated hours, like :
Column 1: [A, B, C]
Column 2: [8, 6, 18] #hour of the step 1 of each process
Column 3: [9, 7, 19] #hour of the step 2 of each process
Column 4: [10, Nan, Nan] #hour of the step 3 of each process
Is this possible to do directly on Power BI or I need to pass by other tools such as python? Thank you,