Why does this not work in my OnSelect property?
The error is: "Name is not valid. The identifier is not recognized."
I believe it's complaining about ThisItem.Name.
ClearCollect( ArticleHtmlDiagCollection,
AzureDataExplorer.listKustoResultsPost(
"https://***.kusto.windows.net",
"***",
"Dim_Customer** | where Id == '" & ThisItem.Name & "'").value);
but it does work when I change the equality operator from the == to != ?