Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Edit Dimension "Contain"

Hello,

Please, someone knows how to edit in Dimensions the following:

I will like to name all the "Names" that contain "Blue" in the Word (for example) as " Cold". Is this posible?

Thanks a lot

Belén

2 Replies
maxgro
MVP
MVP

If I understand you want to replace Names with blue (red arrow) with Cold

If yes, the calculated dimension is in the red rectangle

=if(wildmatch(Names, '*blue*'), 'Cold', Names)

1.jpg

robert_mika
Master III
Master III

You can do that in Load statement as well:

t1:

load

IF(wildmatch(Category, '*blue*'), 'Cold', Category)

FROM

[151654.xlsx]

(ooxml, embedded labels, table is [Sheet1]);

where Category is your column with Names