How to check if specific cell is empty

Hi!

Can someone help me check if a specific cell is empty (A3 cell)?

My steps are:

  1. Use Excel Application Scope
  2. Use read range for the data inside excel - note that Im not sure if this step is necessary
  3. Check if A3 has data or null

Thanks!

Have you tested the Read Cell activity? If you are using it, you can skip step 2.

image

You can then check the result with String.IsNullOrEmpty().

String.IsNullOrEmpty(result)

Yeah, I’ve already tested it and it works. Thanks!