Skip to main content
Announcements
Accelerate Your Success: Fuel your data and AI journey with the right services, delivered by our experts. Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
coolguy123
Contributor II
Contributor II

Add values to dimension

I have a data set and have added a value using inline load

 

temp:

load 

“car model”,

“car reg”,

year

from abc;

 

concatenate (temp)

load * inline [

‘“car model”

‘Super’

]

 

now my issue is the new model I added called Super is listed but won’t interact with any other data or fields 

when I select Super all charts/tables only show null

 

2 Replies
Ksrinivasan
Specialist
Specialist

hi,

yes nothing will appear while you have selected Super field because no data wrt. super in other fields.

as below

Ksrinivasan_0-1610938762576.png

to overcome that you use applymap function in load script instead of concatenate (temp),

ksrinivasan

 

Ksrinivasan
Specialist
Specialist

hi,

you can try left join also

as given

 

car:
LOAD
"“car model”",
"“car reg”",
"year"
FROM /SSSS1.xlsx]
(ooxml, embedded labels, table is carr);

left join


LOAD * INLINE [

“car model”, Super

A, 100000
B, 90000
C, 80000

];

 

result will be Ksrinivasan_0-1610939087494.png

it will show the value when you select Super

 

ksrinivasan