Checks if a card number passes the Luhn (MOD 10) checksum
=LET(
s, REGEXREPLACE(TRIM(card_number), "[^0-9]", ""),
n, LEN(s),
IF(
n=0,
FALSE,
LET(
pos, SEQUENCE(n),
adjusted, MAP(pos, LAMBDA(p,
LET(
d, VALUE(MID(s, p, 1)),
fr, n - p + 1,
x, IF(MOD(fr, 2)=0, d*2, d),
IF(x>9, x-9, x)
)
)),
AND(
n>=12,
MOD(SUM(adjusted), 10)=0
)
)
)
)This function checks whether a credit/debit card number is valid under the Luhn algorithm (also called MOD 10). It does not verify that the card is real, active, or approved for payment, it only validates the checksum structure. This is useful for cleaning imported datasets, validating user input in spreadsheets, or catching common typos in card numbers. For example, if cell D2 contains 4242 4242 4242 4242, then =IS_VALID_CC(D2) returns TRUE, while if D3 contains 4242 4242 4242 4243, then it returns FALSE.
Use the inputs below to create IS_VALID_CC as a reusable custom function in Google Sheets.
Learn how to add custom functions to Google SheetsIS_VALID_CC
Checks if a card number passes the Luhn (MOD 10) checksum
=LET( s, REGEXREPLACE(TRIM(card_number), "[^0-9]", ""), n, LEN(s), IF( n=0, FALSE, LET( pos, SEQUENCE(n), adjusted, MAP(pos, LAMBDA(p, LET( d, VALUE(MID(s, p, 1)), fr, n - p + 1, x, IF(MOD(fr, 2)=0, d*2, d), IF(x>9, x-9, x) ) )), AND( n>=12, MOD(SUM(adjusted), 10)=0 ) ) ) )
card_number
Text string representing the card number (spaces/dashes allowed)
A1
Other functions in the same category: Data Validation
Checks whether a text value matches a basic email address format
Checks whether a text value is a valid IPv4 address
Checks whether a text value is a valid IPv6 address
Checks whether a text value is a valid ISBN-10
Checks whether a text value is a valid ISBN-13
Checks whether a text value matches a basic HTTP/HTTPS URL format
Named functions enable the creation of custom, reusable formulas that mimic built-in functions, streamlining calculations and data manipulations. These functions simplify complex formulas, making spreadsheets more readable and less prone to errors. By encapsulating intricate logic within a single function call, they enhance consistency across your data. Utilizing named functions reduces the need to write lengthy formulas repeatedly, thereby improving workflow efficiency and productivity in data analysis and management.
Download and import — fastest way to add the function but does not include argument descriptions and examples
Follow these simple steps to download and import a function into your spreadsheet. This method is the quickest and easiest way to add the named function to your Google Sheets document, but will not include the argument description and examples.
Once added, the function will be ready to use in your document like any other built-in function. Simply type the function name and provide the required inputs to use it in your calculations.
Copy and paste — copy and paste each property one at a time
Follow these simple steps to integrate a custom named function into your spreadsheet:
Once added, the function will be ready to use in your document like any other built-in function. Simply type the function name and provide the required inputs to use it in your calculations.