Hi,
This is my excel sheet
B
1. marks
2. 50.65
my php code is:
$marks = round($Worksheet->Cells->Item($i,2),0);
echo $marks;
output is:
50 (wrong output)
I need the output: 51 . How to check this using php coding? Thanks in advance