Hi Swetha
Please try this widget
https://marketplace.mendix.com/link/component/48910/Mendix/Progress-Bar
Swetha
Then you have to write the custom logic
suppose there are 4 fields on the new edit
Go to first field -> go to event tab -> make a microflow on OnChange -> in the microflow take a decision & check null check $currentObjcet/Name!=empty(suppose 1 field is name) if it’s true then change the object $currentObject/progressBar assign 25 if false you can end the event or show the validation feedback,
Similarly do for 2 second field check $currentObject/Name!=empty then again check $currentObject/DOB!=empty if it’s true change the object $currentObject/progressBar assign 50 if false end the event or show the validation feedback.
Do for all
Hope you like the answer