Pass Dynamic values to URL in the Panel Table based on cell value

I want to pass the dynamic values based on my table cell value

I made the column render as a link
for that link want to pass some params for the current cell and the cell values present in that row
or a new field in that object

{
operation :“get”,
logs.field.value:“log value”,
url:“value1?param=cell1&param2=cell2”
}

at least I want to pass the values of the object which is getting iterated, pass that property to url value present in the setting of table panel
How can I achieve this?
Thanks

In old version of grafana, you could get value of any column of the table cell like this
${__cell} for current cell value. and ${__cell_1} to get the value of second column cell. For first column it will be ${__cell_0}.

For new grafana, it is different.
For current cell value, use ${__value.raw}
For any column value, use like this, ${__data.fields[“Column Title Goes here”]}