Hi!
Can someone help me check if a specific cell is empty (A3 cell)?
My steps are:
- Use Excel Application Scope
- Use read range for the data inside excel - note that Im not sure if this step is necessary
- Check if A3 has data or null
Thanks!
Hi!
Can someone help me check if a specific cell is empty (A3 cell)?
My steps are:
Thanks!
Have you tested the Read Cell activity? If you are using it, you can skip step 2.
You can then check the result with String.IsNullOrEmpty().
String.IsNullOrEmpty(result)
Yeah, I’ve already tested it and it works. Thanks!