
Partner - Creator II
2023-09-14
03:22 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Calculate a measure based on different column
Hi, I have a scenario as below -
City | Closest1 | Qty |
A | B | 10.5 |
B | A | 20.3 |
I want to add a new column named Closest1_Qty which tells me about the Quantity for the Closest1 City as follows -
City | Closest1 | Qty | Closest1_Qty |
A | B | 10 | 20.3 |
B | A | 20 | 10.5 |
please help me in creating that new column.
Labels (8)
Labels
- Subscribe by Topic:
-
Chart
-
Data Load Editor
-
Developers
-
dimension
-
expression
-
General Question
-
Script
-
Set Analysis
309 Views
1 Reply

MVP
2023-09-14
03:27 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi
Try in script,
ClosestCity:
Mapping
LOAD * INLINE [
Closest1, Qty
B, 10.5
A, 20.3
];
LOAD *, ApplyMap('ClosestCity', City) as ClosestQty INLINE [
City, Closest1, Qty
A, B, 10.5
B, A, 20.3
];
Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
Please close the thread by marking correct answer & give likes if you like the post.
305 Views
