엑셀의 특정 열의 텍스트를 한꺼번에 인터넷에 조회 하는 방법

안녕하세요.
use Excel file > for Each Excel Row > Use Browser Chrome > Type into 에 CurrentRow.ByField(“특정열”) 이렇게 구성했는데 한개의 셀 값을 연속으로 반복해서 넣더라구요, 혹시 예시로 B열의 전체 텍스트를 한꺼번에 인터넷 조회창에 입력하거나 복붙? 가져다 쓸수있는 방법이 없을까요?

Hi @doosanhero6 ,
What is your expect result?
I think you need use browser search each row in excel file, that’s right?
you can try
Forum_Common.zip (10.3 KB)

hope it help
regards,

1 Like

제가 맞게 이해한게 맞는지는 모르겠지만, 특정 열 전체의 데이터를 한줄의 String으로 만들고 싶다는 것이지요?

  1. Use Excel File 액티비티 생성을 한 후 엑셀을 선택합니다.
    2.For Each Row in Data Table을 생성한 후 Excel.Sheet(“시트명”)을 데이터 테이블에 넣으시고 Body 내부 Assign 액티비티를 하나 만들어 줍니다.
    3.Assign 좌항에 컨트롤 + k를 누른 후 이름을 붙여 String 타입 변수를 만듭니다.
    image

4.Assign 우항에 3에서 만든 변수의 이름 + " " + CurrentRow(컬럼번호).ToString을 입력합니다.
5.Type into 다음 입력창에 변수 이름을 적어줍니다.

의도에 맞는 답변인지 모르겠지만, 도움이 되셨으면 좋겠네요. 즐거운 RPA 되세요!

1 Like

It didn’t work out, but thank you for your help

Can you share error?
because It work correct in my PC, what I understand about your requirements
To detail I think you should clear requirements
regards,

1 Like

안녕하세요. 성현님

우연히도 저와 이름이 같네요 ㅎㅎ
정말 많은 도움이 되었습니다.
어느정도 돌파구가 생긴거 같아요.

혹시, for each 반복문이 아닌 특정 열 전체의 데이터를 한줄의 String (세로로) 만들수 있는 방법도 있을까요?

예시로) 자전거 전기자전거 MTB자전거 한줄이 아닌

자전거
전기자전거
MTB자전거

처럼 여러줄로 적용 할수 있는 방법도있을까요 ?
가능하시다면 도움주시면 너무 감사하겠습니다!

I wonder if it is possible to bring up the data in a specific column of Excel at once and paste it vertically into the text input window of the Internet browser I’m sorry that it’s hard to communicate because I’m not good at English

Yes, we can
I see, you can share image about input and expect output, I will help you
my sample I send to you , I have a excel file have 3 keywords, robot open 3 tabs

1 Like

하하 우연이네요.
안타깝게도 for each를 사용하지 않는 조건으로는 저도 방법을 모르겠습니다.
다만, 데이터 내부에 개행문자를 추가하는 식으로 텍스트를 구성할 수는 있을 것 같습니다.
제가 말씀드린 부분에서 4번 부분을 Assign의 우항을 아래와 같이 수정해보세요!
변수이름+ " " +CurrentRow(컬럼번호).ToString + Environment.NewLine
추가하시면 값이 개행문자까지 저장이 될텐데… 해당 UI에서 적용이 될지는 모르겠네요!
즐거운 하루 되세요!

1 Like

Thank you.
I don’t know if it’ll be delivered properly
It’s the format I want.

33

도와주셔서 감사합니다^^
가이드 주신대로 시도해 보겠습니다 (_ _)

yes my way and your delivered are the same
You can see in my input and output

1 Like

달라요
저는 하나씩 입력해서 조회 하는것이 아닌
엑셀 열의 데이터를 한꺼번에 조회하는것을 원합니다.

this is simpler,
get all rows to a string

1 Like

Oh, really?
Can I see the sample file?

감사합니다 알려주신 대로 적용해보니 제가 원하는대로

예시로) 자전거 전기자전거 MTB자전거 한줄이 아닌

자전거
전기자전거
MTB자전거

잘 작동됩니다만,
데이터 양이 많은 경우는
A
A
B
A
B
C
처럼 반복적으로 불러오기 때문에 시간이 상당량 소모되네요, 반복하지않고 들어갈수있으면 참좋을텐데요…모쪼록 도움주셔서 너무 감사합니다! 더 공부해보겠습니다 :slight_smile:

1 Like

input


output

this’s my eg get all them to a string
you can use string enter to anywhere you want
that’s similar with your want?

1 Like

Oh, it’s similar
What I want is not horizontal
I want it to be entered vertically.


that’s right
each row type into then key enter to down line

1 Like

That’s right.
Excel data
It’s not easy to have a specific web input like a picture
That’s my goal.
I would appreciate it if you could share the method.