- Does LT work with dates in my maintenance log?
- Yes, LT compares dates chronologically. For example, =LT(DATE(2026,9,1), DATE(2026,9,15)) returns TRUE. This is useful for checking whether a service date falls before a deadline or threshold.
- What's the difference between LT and LTE?
- LT returns TRUE only for strictly less than; LTE includes equal. So =LT(250, 250) returns FALSE, but =LTE(250, 250) returns TRUE. Use LTE when the boundary value should be included.
- Can LT compare text values?
- Yes, LT compares text alphabetically. =LT("Downtown", "Midtown") returns TRUE because "D" comes before "M". This works with any character data, though it may be less intuitive than numeric comparisons.
- How do I combine LT with multiple conditions?
- Use AND inside FILTER to check multiple LT conditions: =FILTER(A:E, AND(LT(D:D, 300), LT(B:B, 50000))) returns only records with cost under $300 AND mileage under 50,000. Chain multiple LT calls with AND as needed.