Hi Murili,
the thing is i want to do this only in the quicksight front end. Because i worked around a query that is separates it (in a seperate data set).
here my if query helps if it
note(the VALUES (1), (2), (3), (4), …, (100) where … are actual numbers upto 100)
WITH split_keys AS (
SELECT ID,
TRIM(BOTH '"' FROM split_part(split_part(key_values, ',', n), ':', 1)) AS key
FROM
table_name
CROSS JOIN
UNNEST(SPLIT(key_values, ',')) AS t(split_column)
CROSS JOIN
(VALUES (1), (2), (3), (4), ..., (100)) AS numbers_table(n)
WHERE
n <= CARDINALITY(SPLIT(key_values, ','))
)
SELECT distinct(ID),
key
FROM
split_keys;
but the bigger problem comes when i try to visualize it
reason i work with cost data: some sample examples below of current situation.

now I was trying to link these in quicksight with the actions by having a common mapping
I would like to eliminate the creation of the second dataset all together.
But I was wondering if it was possible to do this directly in quicksight front end?
the table separation as shown above but directly inside a filter value with a calculated field.