Skip to content

Instantly share code, notes, and snippets.

View mepalival's full-sized avatar

mp13 mepalival

View GitHub Profile
@mepalival
mepalival / sog.txt
Last active September 24, 2025 11:02
Excel Lab Module for SOG Work
//Convert Event,Age Group,Gender with Range Value
Convert_Event_AG_Gen=
LAMBDA(AgeGroupValue,GenderValue,EventValue,RangeLookup,
TEXTJOIN("#",TRUE,
IFERROR(VLOOKUP(EventValue,RangeLookup,2,FALSE),"NotFound"),
IFERROR(VLOOKUP(AgeGroupValue,RangeLookup,2,FALSE),"NotFound"),
IFERROR(VLOOKUP(GenderValue,RangeLookup,2,FALSE),"NotFound"))
);