Iโm trying merge two lists into a single ENUMLIST so the use can check off various items. So the simplified formula for the suggested value is:
ANY(Select(Table[ENUMLIST],[Something]=TRUE))
+
Select(Table[TEXT],[SomethingElse]=TRUE)
Lets say that ENUMLIST=โa,b,cโ and the select function pulls in โ1โ, โ2โ and โ3โ. What Iโm seeing is:
a,b,c
1
2
3
whereas I want to see:
a
b
c
1
2
3
Iโve tried wrapping either, both and all in a LIST() equation. If anything that makes them group more.
Anyone have any idea what Iโm doing wrong?
Solved! Go to Solution.
Try:
SPLIT(Select(Table[ENUMLIST],[Something]=TRUE), " , ")
+
Select(Table[TEXT],[SomethingElse]=TRUE)
Try:
SPLIT(Select(Table[ENUMLIST],[Something]=TRUE), " , ")
+
Select(Table[TEXT],[SomethingElse]=TRUE)
@Steve awesome, that works!
This merge enumlist works great for single text values, however, say I have an enumlist that uses more than one word, for example
This piece of text,Another piece of text,Last/end piece of text
I would like to have a list produced as below
This piece of text
Another piece of text
Last/end piece of text
Are there any workarounds to produce a list like that?
Create a list then display it in the App as an ENUMLIST?
@Aurelien is right. Using SPLIT you get to define the break points. Youโre only real issue maybe if you have a string of text with commas in
But if thatโs the case you could just CONCATENATE() everything using a different separator, then split by it with SPLIT()
Another good point @Rafael_ANEIC-PY . In an ENUMLIST you can specifiy the separator as well
Yeah ive tried it. I can only get it to separate by a space. Im just trying out a few test runs now with different data to see what the outcomes are.
The results Iโm currently getting are:
try
SPLIT(Select(Table[ENUMLIST],[Something]=TRUE), ",")
+
Select(Table[TEXT],[SomethingElse]=TRUE)
(blank spaces around comma: out)
Ive i tried that aswell, blank spaces out. with no luck.
Is the delimiter not the resulting delimiter? Not the determining delimiter.
No idea.
We will have to wait for the mega-master @Steveโs opinion
Unless @1minManager and @Rafael_ANEIC-PY have another idea ?
General advice.
" , "
. You can delete all of the actual content and then make sure to type space - comma - space
" , "
.
Text 1, Text 2, Text 3
you have to replace ", "
for " , "
Text 1,Text 2,Text 3
you have to replace ","
for " , "
; you got the pointThanks so much for that, it worked!! Really appreciate the help everyone.
User | Count |
---|---|
15 | |
14 | |
8 | |
7 | |
4 |