Forum Discussion
Red_Handler
Dec 14, 2022Copper Contributor
Performing a lookup where the lookup value appears multiple times (incrementally through rows)
I have been puzzling over the following. Have a table that looks a bit like this: What I want to do is populate. second worksheet and record Module 1, 2, and 3 completions, by entering a '1'...
Lorenzo
Dec 15, 2022Silver Contributor
in J3 and copy right:
=IF(
COUNTIFS(Data[[Code]:[Code]],Report[@[Code]:[Code]],
Data[[ModuleCompleted]:[ModuleCompleted]],Report[[#Headers],[Module 1]]
), 1, "Not completed"
)