Forum Discussion
athomp15
6 years agoHelper I
Append to string based on number (loop)
Hi, Any help would be appreciated. I have a source table that shows allocated resources on a project. I would like to add a new column which appends to the "Resource Allocated" column ";Anothe...
- 6 years ago
You can do this with a custom column that repeats ";Another" according to the missing amount:
[Resources Allocated] & Text.Repeat(";Another", [Resources Missing])
AlexisOlson
6 years agoSuper User
You can do this with a custom column that repeats ";Another" according to the missing amount:
[Resources Allocated] & Text.Repeat(";Another", [Resources Missing])