VBA-tools / VBA-JSON

JSON conversion and parsing for VBA
MIT License
1.76k stars 568 forks source link

Minor suggestion for readme #189

Open smf723 opened 3 years ago

smf723 commented 3 years ago

In the example change the cell assignments from:

Sheets("example").Range(Cells(1, 1), Cells(Parsed("values").Count, 3)) = Values

to:

With Sheets("example") .Range(.Cells(1, 1), .Cells(Parsed("values").Count, 3)) = Values End With

This eliminates the issue if the current sheet is different than "example".