Compare and paste value

I Have question here, I have 2 excel file one with “Receipt Type”, " Bill No." and “Amount”, and other is “Bill No.”, “Amount AR”, “Amount other AR”. I want to check if Bill No. is AR then fill Amount AR. If not AR fill Amount Other AR.Here is example

image

Please help me to process it !

Use multiple for each

Check condition as row(“receipt type”).tostring.contains (“Ar”)

Then
Assign row(“Amount Ar”).Tostring =row(“Amount”). Tostring

Thanks
Ashwin.S

1 Like

Thanks for your answer, but how can robot paste extracly to bill number with AR Amount or Other AR Amount

Hi @marcus1206

Use the condition like row(“bill number”). Tostring.equals(row(“bill number”) and row(“receipt type”). Tostring.contains(“Ar”)

Thanks
Ashwin.S

1 Like

First u read the excel having amt nd receipt type
then use for each row before that assign counter as Count=2
in for each use if in that
row(“Receipt Type”)=“AR”
Then : write cell for second with loc B+Count.tostring and in else write cell in C+Count.tostring
after if use assign for count increment

note : bill number must be on same location
if not then tell me i will tell u for that also

1 Like

Yes In this case bill number on the same location, But in the other case if bill number are not the same location , what will need to do ?

then use for each row for second excel in for each of first then use row1(“Bill No”).tostring=Row(“Bill No”).tostring
then : check cond for AR as earlier said nd insted write cell use assign
row1(“Amount AR”)=row(“Amount”)

at the end use write range

Have u got the Solution???

I will try thanks for help bro !

if u get solution from my ans then pls mark it as solution and close this topic
happy automation :blush:

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