I tested the number of facilities and it worked as well. All good. Just two questions on outputs 1) i want to see only those customer-facility pairs where the assign variable is 1. I tried this below by throwing a filter of Build = 1 but it did not work. create data STDOPT.COG_Output(where=(Build=1)) from [i j]={i in CUSTOMERS,j in FACILITIES}
Cust_Lat=a[i,1] Cust_Lon=a[i,2] Fac_Lat=f[j,1] Fac_Lon=f[j,2] Distance=dist[i,j]
Assign SiteState=SiteState[i]; 2) How do I display the Sitename of the facility (the actual name) instead of the Sitenumber. like "Charleston" as opposed to number 9.
... View more