About config

In config excel file. We pass values like eg: in_config(“”).tostring right. In that way i have an multiple rows bot have to pass all the multiple rows in the config rows in the code. Is we have to pass like in_config(“”).tostring + in_config(“”).tostring

Each and every row have to pass like this in the code or any other way to pass

@shehenaz_begum use foreach loop to build the string first
e.g. if your Config contains

  1. key = “A”, value = “B”
  2. key = “C” value = “D”
    , after the foreach loop, finalString = “BD”

    then you can pass finalString to your code

Example
testt.xaml (6.7 KB)