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

Ignore case in load script dimensions

Good day!

In attached model i load data from two xlsx files (Source1, Source2)

Source1 and Source2 have the same field Name, by which i want to connect data.

But after reload filed Type is loading only for Name DSD.

How to do this with ignoring case?

Thank you!

1 Solution

Accepted Solutions
maxgro
MVP
MVP

use Upper or Lower or Capitalize in your load

Capitalize(Name) as Name,

View solution in original post

3 Replies
maleksafa
Specialist
Specialist

use Upper or lower function when loading the field name

Load

     Upper(Name) ...

maxgro
MVP
MVP

use Upper or Lower or Capitalize in your load

Capitalize(Name) as Name,

Anonymous
Not applicable
Author

Good)!

Thx