Announcements
Hi,
I am trying to remove specific number from unitNum.
I have another table that has this numbers. I want to remove these numbers from unitNum variable.
Is that possible? I have tried looking for solutions but I can't find similar problems.
Kind regards,
Jeff
@JeffGimo The main issue here is you are storing values in a variable when they would be better off stored inside a collection. To create a collection with the values "1" to "100" do this.
ClearCollect(unitNUM, ForAll(Sequence(100), Text(Value)));
Then to remove a specific number from unitNUM you can use this code. In my example the number "45" is being removed.
RemoveIf(unitNUM, Value="45")
---Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."
Thank you so much this approach is much easier. Cheers!
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.
Congratulations to our 2026 Super Users!
Congratulations to our 2025 community superstars!
These are the community rock stars!
Stay up to date on forum activity by subscribing.
Haque 70
WarrenBelz 64 Most Valuable Professional
Kalathiya 36 Super User 2026 Season 1