How can we determine that a given aadhar number is valid or not?

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:

  1. Store the data from the input field in a key.
  2. 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.

image

image

Thank you @Neeraj_Kumar for explaining.