Forum Discussion
Anonymous
6 years agoNot applicable
Custom column
Hi, so I have two columns depth from and depth to. I need to create a new column called Total depth that: - has the first row the same as in depth from (30 in this case) - the rest of rows are copi...
v-alq-msft
6 years agoCommunity Support
Hi, Anonymous
You may create a calculated table as below, modify the measure and use the columns from the table to display the result.
New Table =
UNION(
'Table',
ROW("Step No",9,"Depth from",BLANK(),"Depth to",BLANK())
)
Best Regards
Allan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
6 years agoNot applicable
v-alq-msft the problem is that the number of steps can vary, this time it's 9 but it can be only 3 or 30 next time.