Apr 07 2024 08:11 PM
Hello everyone,
Is there a way to assign numbers from one cell into another cell? Example, if I place 1-10 in once cell but will like to filter the data from it into columns B-G using the letter X to signify whichever number in the column how would that work? I'm sorry not very tech savvy. Coming from Academic Advising and I need a system to filter students who are staying within sequence versus those who aren't.
If this isn't the best way please feel free to share a much easier method. I will also like to name the Areas if possible. Not sure if I can change from H-.... to reflect the name of the Area ex. Communications, Humanities, etc...
Apr 08 2024 06:52 AM
Solution@rwilli10 Can you show is a bit more of what your (anonymized) source data looks like? And explain more about what your goal is precisely?
Apr 08 2024 08:26 AM
If I understand your dataset and the goal correctly, perhaps with MAKEARRAY:
=LET(
height, ROWS(missing),
width, 20,
CheckForMissing, LAMBDA(r, c,
LET(
MissingAreas, INDEX(missing, r),
Check, XMATCH("*" & c & "*", MissingAreas, 2),
IF(ISNUMBER(Check), "x", "")
)
),
MAKEARRAY(height, width, CheckForMissing)
)
Apr 08 2024 05:15 PM
Apr 09 2024 12:59 AM
@rwilli10 Have you checked the attachment of @Patrick2788 ? It might do what you are looking for?
Apr 08 2024 06:52 AM
Solution@rwilli10 Can you show is a bit more of what your (anonymized) source data looks like? And explain more about what your goal is precisely?