cancel
Showing results for 
Search instead for 
Did you mean: 
Reply

Validation of Input field onSelect

 

 

 

 

 

 

Hi All,

 

I am trying to validate a data entry in an input field (Input1) dynamically based on the users selection of another field (Dropdown1) on the form.

I am not able to create a dynamic Regular Expression as PowerApps doesn't support building Regex expressions on the fly, so I have added a regular expression that covers all scenarios on Input1.

 

What I would like to do is when the user is submits the form (onSelect) check that Input1 contains the correct information. IE: The Country code matches the country selected in the form.

 

(4 Alphabetic Characters) (Country Code) (2 Alphanumeric or 5 Alphanumeric Characters)

 

This is my Regex:

 

 

 

^[A-Z]{4}(AD|AE|AF|AG|AI|AL|AM|AN|AO|AQ|AR|AS|AT|AU|AW|AZ|BA|BB|BD|BE|BF|BG|BH|BI|BJ|BM|BN|BO|BQ|BR|BS|BT|BV|BW|BY|BZ|CA|CC|CD|CF|CG|CH|CI|CK|CL|CM|CN|CO|CR|CS|CU|CV|CW|CX|CY|CZ|DE|DJ|DK|DM|DO|DZ|EC|EE|EG|EH|ER|ES|ET|FI|FJ|FK|FM|FO|FR|GA|GB|GD|GE|GF|GH|GI|GL|GM|GN|GP|GQ|GR|GS|GT|GU|GW|GY|HK|HM|HN|HR|HT|HU|ID|IE|IL|IN|IO|IQ|IR|IS|IT|JM|JO|JP|K1|K5|KE|KG|KH|KI|KM|KN|KP|KR|KW|KY|KZ|LA|LB|LC|LI|LK|LR|LS|LT|LU|LV|LY|MA|MC|MD|ME|MG|MH|MK|ML|MM|MN|MO|MP|MQ|MR|MS|MT|MU|MV|MW|MX|MY|MZ|NA|NC|NE|NF|NG|NI|NL|NO|NP|NR|NU|NZ|OM|PA|PE|PF|PG|PH|PK|PL|PM|PN|PR|PS|PT|PW|PY|QA|RE|RO|RS|RU|RW|SA|SB|SC|SD|SE|SG|SH|SI|SJ|SK|SL|SM|SN|SO|SR|ST|SV|SX|SY|SZ|TC|TD|TF|TG|TH|TJ|TK|TM|TN|TO|TP|TR|TT|TV|TW|TZ|UA|UG|UM|US|UY|UZ|VA|VC|VE|VG|VI|VN|VU|WF|WS|XI|XK|YE|YT|YU|Z1|Z2|Z3|Z4|Z5|Z6|Z7|ZA|ZM|ZW)[A-Z0-9]{2}([A-Z0-9]{3})?$

 

 

 

 

The dynamic part of the check is the country code which needs to be the same as the country code provided when the user selects a country in dropdown1.

 

 

 

 

LookUp(Countries, Title = ddCountry.SelectedText.Result, CountryCode)

 

 

 

 

I hope this makes sense...

 

In the ideal world I would like to do this on the Input1 field for the onChange property... But it doesn't work!

 

 

 

 

If(
!IsMatch(txtSwift.Text, "^[A-Z]{4}(" & LookUp(Countries, Title = ddCountry.SelectedText.Result, CountryCode) & ")[A-Z0-9]{2}([A-Z0-9]{3})?$"),
Notify("The entered data does not match the required format, e.g. ABCDDK1A or ABCDDK1A2B3", NotificationType.Error);Reset(txtSwift)
)

 

 

 

 

I hope someone has a good idea how I resolve this issue?

 

Thanks! 🙂

 

 

 

8 REPLIES 8

You could just put Regex data into table and use IsBlank to check if user input is in table.

Thanks for the reply! I am not sure I understand your suggestion?

 

I was thinking of doing something like this...

 

Set(
    varCountryCode,
    Mid(
        txtSwift,
        2,
        4
    )
);
If(
    varCountryCode = LookUp(
        Countries,
        Title = ddCountry.SelectedText.Result,
        CountryCode
    ),
    SubmitForm(FrmBankMasterData)
);

 

But this doesn't seem to work either???

If(
   IsBlank(
           LookUp(
                  Countries,
                  CountryCode=txtSwiftText
                  )
           )=true,
           Notify("The entered data does not match the required format, e.g. ABCDDK1A or ABCDDK1A2B3",NotificationType.Error
                  )
)

@LukeShive 

I don't think you have understood what I need to validate... 

 

 

If(
   IsBlank(
           LookUp(
                  Countries,
                  CountryCode=txtSwift.Text
                  )
           )=true,
           Notify("The entered data does not match the required format, e.g. ABCDDK1A or ABCDDK1A2B3",NotificationType.Error
                  )
)

 

 

I do not want to check if countryCode=txtSwift.Text, it is much more complex than that...

 

I want to check if the txtSwift.Txt contains the CountryCode in a specific position within the text string as I explained in the original post.

 

(4 Alphabetic Characters) (2 Character CountryCode) (2 Alphanumeric or 5 Alphanumeric Characters)

 

EG:

If Dropdown1 = United Kingdom

then check the CountryCode is UK in the following position within txtSwift.Text

ABCDUK1D

or

If Dropdown1 = United States

then check the CountryCode is US in the following position within txtSwift.Text

ACDKUS5C22D

 

I would imagine it should be something like this on the OnSelect button?

 

If(
     Mid(
        txtSwift.Text,
        2,
        4
    ) = LookUp(
        Countries,
        Title = ddCountry.SelectedText.Result,
        CountryCode
    ),
    SubmitForm(FrmBankMasterData)
);

 

 

I hope this clarifies any misunderstanding. 🙂

Well in that case something like this should do trick. /I may have messed up comas though 😄

 

If(
	Len(txtSwift.Text)<11,
	Notify("The entered data does not match the required format, e.g. ABCDDK1A or ABCDDK1A2B3",NotificationType.Error),
	Set(
		varChkitout,
		If(
			IsMatch(
				Left(txtSwift.Text,4),
					MultipleLetters & MultipleLetters & MultipleLetters & MultipleLetters
					)=true,
					1,
					0
			)
		)&&
	Set(
		varChkitout,
		If(
			IsBlank(
				LookUp(
					  Countries,
					  CountryCode=Mid(txtSwift.Text,5,2)
					)
				)=false,
			varChkitout,
			varChkitout+1				
			)
		)&&
	Set(
		varChkitout,
		If(
			IsMatch(
				Right(txtSwift.Text,2),
					Digit & Digit
					)=true 
					OR
					Right(txtSwift.Text,5),
					Digit & Digit & Digit & Digit & Digit
			)=true,
			varChkitout,
			varChkitout+1
			)&&
	If(
		varChkitout<>3,
		Notify("The entered data does not match the required format, e.g. ABCDDK1A or ABCDDK1A2B3",NotificationType.Error)
	)
)

 

 

We're on the right path... 🙂

 

But it isn't:

 

 

Len(txtSwift.Text)<11,
Notify("The entered data does not match the required format, e.g. ABCDDK1A or ABCDDK1A2B3",NotificationType.Error),

 

 

Because it is ONLY 8 or 11 characters, not less than 11 (IE: 1,2,3,4,5,6,7,9 and 10 characters are NOT valid.)

 

This is perfect for the first 4 characters (All letters)

 

 

IsMatch(
Left(txtSwift.Text,4),
MultipleLetters & MultipleLetters & MultipleLetters & MultipleLetters
)=true,
1,
0
)

 

 

Then we need to check if the selected Country in Dropdown1 matches the CountryCode in txtSwift. (5th and 6th Character only)

 

Dropdown1 Dataset

Title, CountryCode

United Kingdom, UK

United States, US

Denmark, DK

 

Example txtSwift:

ABCDUK1D

(BoldText = CountryCode to match against Dropdown1, CountryCode)

 

 

If(
     Mid(
        txtSwift.Text,
        2,
        4
    ) = LookUp(
        Countries,
        Title = ddCountry.SelectedText.Result,
        CountryCode
    ),
    true
);

 

 

The following doesn't work as the last 2 or 5 characters can be either a digit or a letter.

 

If(
			IsMatch(
				Right(txtSwift.Text,2),
					Digit & Digit
					)=true 
					OR
					Right(txtSwift.Text,5),
					Digit & Digit & Digit & Digit & Digit
			)=true,
			varChkitout,
			varChkitout+1
			)

 

 

 But perhaps you could combine 2 regex IsMatch with Mid Function to validate it...

 

 

For Example:

This is not valid code as it is a little above my No Code Low Code capabilities! 😉

 

 

If(
    !IsMatch(txtSwift.Text, "^[A-Z]{4}"), 
    Notify("The entered data does not match the required format, e.g. ABCDDK1A or ABCDDK1A2B3", NotificationType.Error);Reset(txtSwift)
)
&&


If(
     Mid(
        txtSwift.Text,
        2,
        4
    ) = LookUp(
        Countries,
        Title = ddCountry.SelectedText.Result,
        CountryCode
    ),
    true
)&&

If(
    !IsMatch(txtSwift.Text, "[A-Z0-9]{2}([A-Z0-9]{3})?$"), 
    Notify("The entered data does not match the required format, e.g. ABCDDK1A or ABCDDK1A2B3", NotificationType.Error);Reset(txtSwift)
)

 

 

 How would you structure this???

 

What I have written in my first response was valid it was more about idea than actual copy and paste code. You have to adjust localization comas yourself. This is tested and working solution. This is not clean or optimized code the same thing can be achieved with much less code using just a IsMatch pattern. 

If(
    Len(txtSwift.Text) = 8 Or Len(txtSwift.Text) = 11;
    Set(
        varContryCode;
        Dropdown1.Selected.CountryCode
    ) && Set(
        varChkitout;
        If(
            IsMatch(
                Left(
                    txtSwift.Text;
                    4
                );
                Letter & Letter & Letter & Letter
            ) = true;
            1;
            0
        )
    ) && Set(
        varChkitout;
        If(
            Mid(
                txtSwift.Text;
                5;
                2
            ) = Dropdown1.Selected.CountryCode;
            varChkitout + 1;
            varChkitout
        )
    ) && Set(
        varChkitout;
        If(
            IsMatch(
                Right(
                    txtSwift.Text;
                    2
                );
                "([A-Za-z]+[0-9]|[0-9]+[A-Za-z])[A-Za-z0-9]*"
            ) = true Or IsMatch(
                Right(
                    txtSwift.Text;
                    5
                );
                "([A-Za-z]+[0-9]|[0-9]+[A-Za-z])[A-Za-z0-9]*"
            ) = true;
            varChkitout;
            varChkitout + 1
        )
    ) && If(
        varChkitout <> 3;
        Notify(
            "The entered data does not match the required format, e.g. ABCDDK1A or ABCDDK1A2B3";
            NotificationType.Error
        )
    );
    Notify(
        "The entered data does not match the required format, e.g. ABCDDK1A or ABCDDK1A2B3";
        NotificationType.Error
    )
)

 

@LukeShive  I appreciate the help and input! I am not a developer and I guess this is just above my capabilities. Despite trying to correct the localisation comas this code isn't working for me. I guess I will just have to find a simpler solution. It would be so much easier if you could build regex statements on the fly.

 

Thanks again! 

Helpful resources

Announcements

Community will be READ ONLY July 16th, 5p PDT -July 22nd

Dear Community Members,   We'd like to let you know of an upcoming change to the community platform: starting July 16th, the platform will transition to a READ ONLY mode until July 22nd.   During this period, members will not be able to Kudo, Comment, or Reply to any posts.   On July 22nd, please be on the lookout for a message sent to the email address registered on your community profile. This email is crucial as it will contain your unique code and link to register for the new platform encompassing all of the communities.   What to Expect in the New Community: A more unified experience where all products, including Power Apps, Power Automate, Copilot Studio, and Power Pages, will be accessible from one community.Community Blogs that you can syndicate and link to for automatic updates. We appreciate your understanding and cooperation during this transition. Stay tuned for the exciting new features and a seamless community experience ahead!

Summer of Solutions | Week 4 Results | Winners will be posted on July 24th

We are excited to announce the Summer of Solutions Challenge!   This challenge is kicking off on Monday, June 17th and will run for (4) weeks.  The challenge is open to all Power Platform (Power Apps, Power Automate, Copilot Studio & Power Pages) community members. We invite you to participate in a quest to provide solutions in the Forums to as many questions as you can. Answers can be provided in all the communities.    Entry Period: This Challenge will consist of four weekly Entry Periods as follows (each an “Entry Period”)   - 12:00 a.m. PT on June 17, 2024 – 11:59 p.m. PT on June 23, 2024 - 12:00 a.m. PT on June 24, 2024 – 11:59 p.m. PT on June 30, 2024 - 12:00 a.m. PT on July 1, 2024 – 11:59 p.m. PT on July 7, 2024 - 12:00 a.m. PT on July 8, 2024 – 11:59 p.m. PT on July 14, 2024   Entries will be eligible for the Entry Period in which they are received and will not carryover to subsequent weekly entry periods.  You must enter into each weekly Entry Period separately.   How to Enter: We invite you to participate in a quest to provide "Accepted Solutions" to as many questions as you can. Answers can be provided in all the communities. Users must provide a solution which can be an “Accepted Solution” in the Forums in all of the communities and there are no limits to the number of “Accepted Solutions” that a member can provide for entries in this challenge, but each entry must be substantially unique and different.    Winner Selection and Prizes: At the end of each week, we will list the top ten (10) Community users which will consist of: 5 Community Members & 5 Super Users and they will advance to the final drawing. We will post each week in the News & Announcements the top 10 Solution providers.  At the end of the challenge, we will add all of the top 10 weekly names and enter them into a random drawing.  Then we will randomly select ten (10) winners (5 Community Members & 5 Super Users) from among all eligible entrants received across all weekly Entry Periods to receive the prize listed below. If a winner declines, we will draw again at random for the next winner.  A user will only be able to win once overall. If they are drawn multiple times, another user will be drawn at random.  Individuals will be contacted before the announcement with the opportunity to claim or deny the prize.  Once all of the winners have been notified, we will post in the News & Announcements of each community with the list of winners.   Each winner will receive one (1) Pass to the Power Platform Conference in Las Vegas, Sep. 18-20, 2024 ($1800 value). NOTE: Prize is for conference attendance only and any other costs such as airfare, lodging, transportation, and food are the sole responsibility of the winner. Tickets are not transferable to any other party or to next year’s event.   ** PLEASE SEE THE ATTACHED RULES for this CHALLENGE**   Week 1 Results: Congratulations to the Week 1 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Community MembersNumber of SolutionsSuper UsersNumber of Solutions @anandm08  23 @WarrenBelz  31 @DBO_DV  10 @Amik  19 AmínAA 6 @mmbr1606  12 @rzuber  4 @happyume  7 @Giraldoj  3@ANB 6 (tie)   @SpongYe  6 (tie)     Week 2 Results: Congratulations to the Week 2 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Community MembersSolutionsSuper UsersSolutions @anandm08  10@WarrenBelz 25 @DBO_DV  6@mmbr1606 14 @AmínAA 4 @Amik  12 @royg  3 @ANB  10 @AllanDeCastro  2 @SunilPashikanti  5 @Michaelfp  2 @FLMike  5 @eduardo_izzo  2   Meekou 2   @rzuber  2   @Velegandla  2     @PowerPlatform-P  2   @Micaiah  2     Week 3 Results: Congratulations to the Week 3 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge.   Week 3:Community MembersSolutionsSuper UsersSolutionsPower Apps anandm0861WarrenBelz86DBO_DV25Amik66Michaelfp13mmbr160647Giraldoj13FLMike31AmínAA13SpongYe27     Week 4 Results: Congratulations to the Week 4 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge.   Week 4:Community MembersSolutionsSuper UsersSolutionsPower Apps DBO-DV21WarranBelz26Giraldoj7mmbr160618Muzammmil_0695067Amik14samfawzi_acml6FLMike12tzuber6ANB8   SunilPashikanti8

Check Out | 2024 Release Wave 2 Plans for Microsoft Dynamics 365 and Microsoft Power Platform

On July 16, 2024, we published the 2024 release wave 2 plans for Microsoft Dynamics 365 and Microsoft Power Platform. These plans are a compilation of the new capabilities planned to be released between October 2024 to March 2025. This release introduces a wealth of new features designed to enhance customer understanding and improve overall user experience, showcasing our dedication to driving digital transformation for our customers and partners.    The upcoming wave is centered around utilizing advanced AI and Microsoft Copilot technologies to enhance user productivity and streamline operations across diverse business applications. These enhancements include intelligent automation, AI-powered insights, and immersive user experiences that are designed to break down barriers between data, insights, and individuals. Watch a summary of the release highlights.    Discover the latest features that empower organizations to operate more efficiently and adaptively. From AI-driven sales insights and customer service enhancements to predictive analytics in supply chain management and autonomous financial processes, the new capabilities enable businesses to proactively address challenges and capitalize on opportunities.    

Updates to Transitions in the Power Platform Communities

We're embarking on a journey to enhance your experience by transitioning to a new community platform. Our team has been diligently working to create a fresh community site, leveraging the very Dynamics 365 and Power Platform tools our community advocates for.  We started this journey with transitioning Copilot Studio forums and blogs in June. The move marks the beginning of a new chapter, and we're eager for you to be a part of it. The rest of the Power Platform product sites will be moving over this summer.   Stay tuned for more updates as we get closer to the launch. We can't wait to welcome you to our new community space, designed with you in mind. Let's connect, learn, and grow together.   Here's to new beginnings and endless possibilities!   If you have any questions, observations or concerns throughout this process please go to https://aka.ms/PPCommSupport.   To stay up to date on the latest details of this migration and other important Community updates subscribe to our News and Announcements forums: Copilot Studio, Power Apps, Power Automate, Power Pages

Users online (792)