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: 
madmax88
Creator II
Creator II

Edit previous loaded data

Hi,

Is it possible to edit previous loaded data in the data Editor?e.g.

Sales:
Load
Advisor,
Product,
Month_Year,
Value
From...

Match Table:
Advisor,
Region
From...

Goal Table:
Region,
Goal,
Month_Year
From...

 

this is actually not possible because "Region" und "Advisor" are 2 different keys.
Is it therefor possible in the "sales table" to replace "Advisor" with "Region"

At the end I must have Table Sales without Advisor but with the correct Region.

Target:


Sales:
Load
Region,
Product,
Month_Year,
Value
From...

Match Table:
Advisor,
Region
From...

Goal Table:
Region,
Goal,
Month_Year
From...

1 Solution

Accepted Solutions
Anil_Babu_Samineni

Perhaps this?

[Match Table]:
Mapping Load Advisor, Region From ..;

Sales:
Load ApplyMap('Match Table', Region) as Region,
Advisor, Product, Month_Year, Value
From...

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful

View solution in original post

2 Replies
Anil_Babu_Samineni

Perhaps this?

[Match Table]:
Mapping Load Advisor, Region From ..;

Sales:
Load ApplyMap('Match Table', Region) as Region,
Advisor, Product, Month_Year, Value
From...

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
madmax88
Creator II
Creator II
Author

It Works, thanks!