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
TRUE
if the argument is omitted,FALSE
if 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
-
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. -
Gmail Mastery: Advanced Training for Efficient Email Management
Original price was: ₹899.00.₹849.00Current price is: ₹849.00. -
Google Calendar Mastery Training: Learn to Streamline Your Schedule in Just 1 Hour
Original price was: ₹999.00.₹949.00Current price is: ₹949.00.