Your cart is currently empty!
ISOMITTED Function in Excel 365 – Complete Guide
The ISOMITTED function is a new and specialized function available in Excel 365 that works exclusively within LAMBDA functions. It’s designed to check if an argument has been omitted when the LAMBDA function is called.
📘 What is ISOMITTED in Excel?
ISOMITTED checks whether a specific parameter in a LAMBDA function was provided or left out when the function was called.
🔧 Syntax:
=ISOMITTED(argument)
argument— A parameter defined in a LAMBDA.- Returns
TRUEif the argument is omitted,FALSEif provided.
🧠 Why is it Useful?
It allows you to:
- Define optional parameters in your custom functions.
- Create default values when a parameter is not supplied.
- Add dynamic behavior depending on whether a user provided an input.
✅ Example 1: Optional Discount Argument
Let’s define a function that calculates the total price after an optional discount.
=LAMBDA(price, discount,
IF(
ISOMITTED(discount),
price,
price - price * discount
)
)(100)
💡 Since discount is omitted, it returns 100 — the original price.
But:
=LAMBDA(price, discount,
IF(
ISOMITTED(discount),
price,
price - price * discount
)
)(100, 0.2)
💡 Returns 80 after applying the 20% discount.
✅ Example 2: Creating a Named Function
You can also create a reusable function:
- Go to Formulas > Name Manager > New
- Name:
SmartDiscount - Refers to:
=LAMBDA(price, discount,
IF(ISOMITTED(discount), price, price - price * discount)
)
Now you can use:
=SmartDiscount(200) → returns 200
=SmartDiscount(200, 0.1) → returns 180
🛑 Limitations
- Can only be used inside a LAMBDA function
- Not available outside that context
- Only works in Excel 365 and Excel for the Web
🎯 Use Cases
- Building reusable Excel mini-apps
- Creating optional inputs in custom functions
- Creating smarter calculators with defaults
🎓 Want to Learn More Excel 365 Advanced Features?
If you want to explore LAMBDA, ISOMITTED, LET, and more dynamic Excel tools, check this out:
🔗 Mastering MS Excel – A Comprehensive Training Course
✅ Includes:
- Excel 365-exclusive functions
- LET, LAMBDA, XLOOKUP, FILTER
- Real-life examples and automations
- Projects and templates for professionals
On sale products
-
Bajaj Pulsar NS125 UG ABS Motorcycle
Original price was: ₹110,000.00.₹95,356.00Current price is: ₹95,356.00. -
Copper Diya Shape Flower Decorative for Diwali
Original price was: ₹599.00.₹98.00Current price is: ₹98.00. -
Excel Course in Hindi: Basic to Advanced Level
Original price was: ₹2,299.00.₹2,249.00Current price is: ₹2,249.00. -
Excel Training Program: Fundamentals to Advanced Techniques : Classroom/ Live Classes
Original price was: ₹6,000.00.₹4,000.00Current price is: ₹4,000.00. -
Excel VBA/Macro Masterclass: Automate Excel, Boost Productivity : Classroom /Live Class Training
Original price was: ₹8,500.00.₹6,500.00Current price is: ₹6,500.00. -
Gmail Mastery Training in Hindi: Unlocking Advanced Email Management Technique
Original price was: ₹899.00.₹849.00Current price is: ₹849.00.






