Good afternoon everyone,
I have an issue about my "Crear" button: I want it to be able to click if the "ID FISCAL" text input is with only 11 characters, no more or less.
Thank you,
Jose
You can utilise the StartsWith() function to help here, like this
!(StartsWith(Input_IDFiscal.Text, "20")), Disabled, Edit
see here https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/functions/function-startswith
Thank you to solve me that problem.
Can I also validate to not click the submit button if the "ID FISCAL" text input does not start with "20" for example?
Add this to your formula
|| !(Len(Input_IDFiscal.Text)=11) ...
EDIT: @PowerAddict typing at the same time 🙂
WarrenBelz
791
Most Valuable Professional
MS.Ragavendar
410
mmbr1606
275
Super User 2025 Season 1