Forum Discussion
evaluating duplicate inputs
For anyone that has 365, FILTER is the relevant function.
= LET(
isVehicle, (vehicleNumber=vehicle),
isInRange, (locationNumber>=location1) * (locationNumber<=location2),
isAsFault, (faultDescription=description),
criterion, isVehicle * isInRange * isAsFault,
FILTER(locationNumber, criterion)
)That returns location references rather than sheet row numbers but SEQUENCE could be used to return record numbers.
- PeterBartholomew1May 21, 2023Silver Contributor
There may be some confusion here. As far as I know, there is nothing in the formulas I have written that will not work on-line or on any other hardware platform. Although it looks like code, the formulas are just regular worksheet formulas that use the Excel 365 functions LET and FILTER (I think Google sheets has also implemented the functions) . The use of defined names, rather than direct range references, can cause issues because I don't think Name Manager or the AFE have been implemented within Excel 365 online (if that statement needs to be corrected, I would be delighted to hear).
- SergeiBaklanMay 22, 2023Diamond Contributor
- PeterBartholomew1May 22, 2023Silver Contributor
Thanks Sergei. That is useful to know. Perhaps I should try the cloud version of Excel again! As you will have observed, I only use named arrays to build solutions, so my experience of using Excel on-line from a couple of years ago was not encouraging.