Thankyou Sumit. This is very useful for us. Like to track 7 consecutive days of working or consecutive repeat defaulters. Earlier we had to use some complicated nested countif formulas.
@legolife30122 күн бұрын
Good explanation. Basically the formula says, from 0, scan the given range, while scanning SUM the range.
@trumpexcel2 күн бұрын
Yes, if you're using the SUM function. Else, can also be used as shown in example 3, where a counter is used that increments by 1 whenever a cell matches the given criteria.
@AdrianPalmer-n4j2 күн бұрын
Very helpful. The only way I've done this before is to use a recursive lambda function and offset, but scan makes it much easier
@nadermounir82283 күн бұрын
Very interesting video thank you Summit
@waitplanwp41292 күн бұрын
graet video!❤
@sekhar61063 күн бұрын
Sir, thank you for explaining the formula in detail. Need to learn LAMBDA first, then practice SCAN to get the results shown in the video.
@trumpexcel3 күн бұрын
You can learn about LAMBDA from here - kzbin.info/www/bejne/b3iXenyPfd6GpcU
@carlo_migliari812 күн бұрын
Great video! Next time can you explain REDUCE function?
@trumpexcelКүн бұрын
Yeah, have it on my list for make videos for all the LAMBDA helper functions, including REDUCE
@dineshwagle98323 күн бұрын
Mind-blowing
@rjkumar-s7q3 күн бұрын
Can you please create video, alternative way for Solver add in
@tamersalem75423 күн бұрын
❤ fantastic ❤
@ZeeSum233 күн бұрын
Ah, now it makes sense. Wasn’t sure what it could do.
@Bhavik_Khatri3 күн бұрын
Awesome
@Garimaish3 күн бұрын
Wow 😮
@teoxengineer3 күн бұрын
The 3 th example didn’t spill, I think byrow function is more efficient than scan
@trumpexcel3 күн бұрын
This formula will make it spill =BYROW(B2:G6,LAMBDA(a,IF(MAX(SCAN(0,a,LAMBDA(counter,curr,IF(curr="Absent",counter+1,0))))>2,"Investigate","All Good")))