dherincx
03/27/2020, 7:39 PMswitch
. Is it possible to access the results of the switch in a subsequent task? For example, I have a list of data (some of which contain latitude/longitude and others don't). My switch consists of getting lat/long for the records that are missing it, while records that do have coordinates are simply returned. How can I access the final, joined list after the switch?x=switch(condition, dict(a=a_branch, b=b_branch))
dosomething(x)
Kyle Moon-Wright
03/27/2020, 8:23 PM