Copying a marked text with hotkeys

@kekth, Have you referred this ?

  1. Create a variable Count - Integer type - Default Value = 2
  2. Write Cell : In cell property use “B”+Count.ToString
  3. Assign : Count = Count+1

Example :

  • Initial → Count = 2
    Cell Value = B2
  • (Count=Count+1) → Count becomes 3
    Cell Value = B3
  • (Count=Count+1) → Count becomes 4
    Cell Value = B4

Regards,
Dom :slight_smile:

1 Like