Hi Guys,
I Trying to use function “Update columns from the Same Table”. For this i need a diferent id for each columns that wil be calculated. But i creatind datatable from pandas dataframe with function below.
dash_table.DataTable(
id='tableUPPH',
columns=[{"name": i, "id": i} for i in tabelaupph2.columns],
How can i change id only for a specific columns after columns created from pandas dataframe?
Thank you.