bksbksbks
New Member
- Joined
- Nov 18, 2024
- Messages
- 7
- Office Version
- 365
- 2019
- Platform
- Windows
- MacOS
- Web
The following formula is working perfectly for me:
It generates the following value:
When I wrap the code within a TEXTSPLIT, however, instead of splitting the values into rows (or columns, as I have attempted both), the extra values disappear. The following formula:
generates only the value Job1. The thing that makes it especially frustrating, though, is that when I leave the formula without the TEXTSPLIT and reference it in another cell (say the formula is in A1), the result is perfect. This code:
Generates the desired result:
Is there a part of the TEXTSPLIT formula that would eat the other values? I have not encountered this any other time while using the formula.
Thanks for your help!
Excel Formula:
=XLOOKUP(TEXTSPLIT(XLOOKUP(J1,Overview.JobTitle,Overview.OrgLevel),"|"),'Split Assignment List'!$B3:$ZZ3,'Split Assignment List'!$B4:$ZZ4,"")
It generates the following value:
Excel Formula:
Job1|Job2|Job3|Job4
When I wrap the code within a TEXTSPLIT, however, instead of splitting the values into rows (or columns, as I have attempted both), the extra values disappear. The following formula:
Excel Formula:
=TEXTSPLIT(XLOOKUP(TEXTSPLIT(XLOOKUP(J1,Overview.JobTitle,Overview.OrgLevel),"|"),'Split Assignment List'!$B3:$ZZ3,'Split Assignment List'!$B4:$ZZ4,""),,"|")
generates only the value Job1. The thing that makes it especially frustrating, though, is that when I leave the formula without the TEXTSPLIT and reference it in another cell (say the formula is in A1), the result is perfect. This code:
Excel Formula:
=TEXTSPLIT(A1,,"|")
Excel Formula:
Job1
Job2
Job3
Job4
Is there a part of the TEXTSPLIT formula that would eat the other values? I have not encountered this any other time while using the formula.
Thanks for your help!