@tagustin2020
We'll have to make a progress bar from scratch to be used in the Gallery.
Step #1. Insert a new rectangle shape. Rename it progressBarBackground. Change the Fill property to a dark color. I chose dark blue. Make the height 50 and the width 200.

Step #2 Copy the rectangle you just created and paste directly on top. Rename it progressBar. Change the Fill property to a light color. I chose light blue.

Step #3: Insert a new label. Rename it progressBarPerecent. The change the Color to White and the Fill to transparent. Resize the label so it is exactly as big as the rectangles. Make the Text property of the label ThisItem.PercentComplete. My assumption is you have a column named percent complete containing whole numbers from 0-100.

Step #4: Click on the progressBar. Change the Width property to ThisItem.PercentComplete/2

Note: your form elements must be in this order from top to bottom
- progressBarPercent (label)
- progressBar (rectangle)
- progressBarBackground (rectangle)
---
Please click "Accept as Solution" if my response helped to solve your issue so that others may find it more quickly. If your thought the post was helpful please give it a "Thumbs Up."