I want to check whether my aadhar number is valid or not without using any api or custom regex? Is there any function to do so?
Hi @Harshit, you can use the ISAADHAARVALID() function to achieve this functionality.
Steps to do this:
- Store the data from the input field in a key.
- Pass that key to the ISAADHAARVALID() function. It will return a boolean value.
In my example, I created an input field and mapped a key to it. Then, on the click of a button, I used the “Copy Data” task and passed the key (which stores the Aadhaar number) to the ISAADHAARVALID() function.
Thank you @Neeraj_Kumar for explaining.