Comparing to a row I need add value into data table

I have build data table like below

image

the run mode values comes from the Assets, I need add those values into data table by searching the application name.

@Anil_G

Thanks in advance.

@ManjunathReddy

can you provide in which way you will the values form the asset

how you need to check

if the run mode as UiPath for which row we need to add

assume I have config like config(“Twitter”).ToString = on

So I need add “on” value to Twitter.

Hi @ManjunathReddy

variable = CurrentRow("Column1").ToString
CurrentRow("Column2") = Config(variable).ToString

Please check the below attached screenshot


image

Regards

1 Like

@ManjunathReddy

use lookup datatable…get the row index

use assign with dt.rows(retreivedindex)(1) = in_Config("Requiredkey").ToString

cheers

Hi @ManjunathReddy

  1. Use get Asset to retrieve the values from asset and store it into the variable
  2. Use For Each Row
  3. Use Assign Activity for example

AssetValue=CurrentRow(“Runmode”).ToString

image

@vrdabberu

@ManjunathReddy

Could you please share the xaml r else the screenshot of the xaml

Regards

@ManjunathReddy

Please check the config file whether it contains all the values for this data
image

Regards

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.