Hello,
Is there any one who knows how to handle 'no response error on excel write range activity?
Through Debug activity, found that data was stored properly on DTvariable.
but it’s getting no answer from excel

(Translated: No Response
Hello,
Is there any one who knows how to handle 'no response error on excel write range activity?
Through Debug activity, found that data was stored properly on DTvariable.
but it’s getting no answer from excel
Excel is getting struck while loading? Let me know when you are facing this issue? After write range or before that?
Thanks
@Srini84 Yes ! I think it’s before write range .Because when I cancel the process and check there is no data on excel file
Okay, how many rows of data are present in the DT table?
Also, try to give some delay before and write Range
Hope this may help you
Thanks
@Srini84
I think as you mentioned, it’s getting to many rows.
Do you know how to extract Null or “0” value as well from ResDT_Ori(DT) with below code?
If(
(From d In ResDT_Ori.AsEnumerable
Let chk1 = St_Arr_keyword.Any(Function (k1) d(“Description”).toString.Trim.Contains(k1))
Let chk2 = St_Arr_keyword2.Any(Function (k2) d(“In”).toString.Trim.Contains(k2))
Where Not {chk1,chk2}.All(Function (b) b)
Select r=d).Count.Equals(0),
_
Nothing,
_
(From d In ResDT_Ori.AsEnumerable
Let chk1 = St_Arr_keyword.Any(Function (k1) d(“Description”).toString.Trim.Contains(k1))
Let chk2 = St_Arr_keyword2.Any(Function (k2) d(“In”).toString.Trim.Contains(k2))
Where Not {chk1,chk2}.All(Function (b) b)
Select r=d).CopyToDataTable
)
I’ve tried place ‘Delay’ in front of Write Range but still encounter same error.
Hi @Dorothy_lee !
Would you mind trying with the other write range to see if it gives the same error ?
Ok thank you.
We will try with 3 different options:
If nothing works: is it possible to send us your workflow to analyze it ? Please remove all passwords/private data so we could help
As @Dorothy_lee was working on .xlsm file, Write Range of Workbook won’t work on the same, @Dorothy_lee has to work on the Excel Application scope and Excel activities
Thanks
You’re right: I did not notice that she was working with xlsm ! Thank you
Then @Dorothy_lee you can only try with write range of excel application scope, and only these 2 options should be tried:
Also: If nothing works, is it possible to send us your workflow to analyze it ? Please remove all passwords/private data so we could help
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.