If there were any small changes in the names of columns within gold schema of data, the dashboard will break as those field names are being used to generate the charts and we have to change the name everywhere.
How to manage any column name changes in the underlying data efficiently in a very large project which is being used to generate the charts?
Thanks
Hello @JustinP_1,
Welcome to the community!
You could use a function that performs a map to the desired name, then you can manage all the info in one place and if the name changes in the data, then you adjust the map and your names are updated. 
hanks @jinnyzor
Yeah, I have got a workaround by defining key values in a json file and then a function to map canonical names with the actual data columns.
I guess that’s the best way..:)
1 Like