Issue in Data driven for Robot Framework

Hi Experts
I have created ne robot file where I am using [Template] keyword to read data from xlsx file . I have two test cases and i am facing two errors

  1. When i run my robot framework it is executing only first test case
  2. it is reading the empty cell in xlsx file which cause error for me
    Example

*** Settings ***
Library DataDriver …/…/resources/ABC.xlsx sheet+name=Sheet1

*** Test Cases ***
Test_Case_1
[Template] PIN_SERVICES
${value}

Test_Case_2
[Template] TOKEN_SERVICES
${data}

*** Keywords ***
PIN_SERVICES
[Arguments] ${value}
log ${value}

TOKEN_SERVICES
[Arguments] ${data}
log ${data}

In this program, I have got two values from xlsx file , but i am facing those two issues which is mentioned above

sry that is sheet_name=Sheet1