Hello,
I am trying to insert a variable where ClientName is written:
Fl_Filtered = FeatureLayer.query(where = "client = 'clientName'")
I tried this without success:
querytxt = 'where = "KundeName = ' + "'" + ""'%s'"" %kundeNameWhereFilter + "'" + '"'
Print(querytxt)
Fl_Filtered = FeatureLayer.query(querytxt)
The print ist returns the right String but the query returns an Error code: 400
Anyone knows how could be the solution?
Thanks