0
У меня есть следующий код:Присвоение значения в строку питания Query
let
Condition = Excel.CurrentWorkbook(){[Name="test_table"]}[Content],
field = Condition{0}[field_excel],
str = "One",
query = if field <> null
then str = "two"
else str = "three",
exec= Oracle.Database("TESTING", [Query=str])
in
exec
Я хочу, чтобы в зависимости от состояния str
имеют значение two
или three
, но всегда остается с One
Это сработало! Спасибо! –