Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
athomp15
Helper I
Helper 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 ";Another" for each resource we have missing.

Source Table

Resources Allocated,Number Required,Resources Missing

Person1;Person2,3,1

Person2;Person4,2,0

Person3,3,2

 

Target

Resources Allocated, Number Required,Resources Missing,Resources Resource Allocated Ammended

Person1;Person2,3,1,Person1;Person2;Another

Person2;Person4,2,0,Person2;Person4

Person3,3,2,Person3;Another;Another

 

Thanks

Alex

1 ACCEPTED SOLUTION
AlexisOlson
Super User
Super User

You can do this with a custom column that repeats ";Another" according to the missing amount:

 

[Resources Allocated] & Text.Repeat(";Another", [Resources Missing])

 

View solution in original post

3 REPLIES 3
NSRjecross
Frequent Visitor

@athomp15 

I think the problem here is the original table design isn't designed for this type of reporting.

you should have a  project table that lists the project and the number of resources required.

Then a resource table with your resource items (apparently people)

Then you make a project-resource table with a record for each resource allocated to a project.

 

Then the operation you are after becomes joins with counts or pivots depending what you want.

At the moment you are having to unpack and repack your resource lists for allocated to get counts, who etc.

You can also add some dates to the various tables if you want to have project scheduling with intermittent allocation rather than have to assign a resource to the entire project timeline. 

Good luck

Jen

v-juanli-msft
Community Support
Community Support

Hi @athomp15 

If AlexisOlson slove your problem, could you kindly accept this as a solution?

If not, please let me know how to get target table from your original table?

 

Capture7.JPG

Best Regards
Maggie
Community Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

AlexisOlson
Super User
Super User

You can do this with a custom column that repeats ";Another" according to the missing amount:

 

[Resources Allocated] & Text.Repeat(";Another", [Resources Missing])

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors
Top Kudoed Authors