473,480 Members | 1,749 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

How to get round values from excel sheet using php?

147 New Member
Hi,

This is my excel sheet
B
1. marks
2. 50.65

my php code is:
Expand|Select|Wrap|Line Numbers
  1. $marks  = round($Worksheet->Cells->Item($i,2),0);
  2.            echo $marks;
output is:
50 (wrong output)


I need the output: 51 . How to check this using php coding? Thanks in advance
May 24 '11 #1
3 1585
code green
1,726 Recognized Expert Top Contributor
Looks like
Expand|Select|Wrap|Line Numbers
  1. $Worksheet->Cells->Item($i,2)
is returning a string. round only works on floats.
May 24 '11 #2
santhanalakshmi
147 New Member
hi,
what is the other option to do this?There is any way to round my value.
May 24 '11 #3
code green
1,726 Recognized Expert Top Contributor
cast to a float may. Try
Expand|Select|Wrap|Line Numbers
  1. $marks  = round((float)($Worksheet->Cells->Item($i,2)),0); 
But the problem may lie in $Worksheet class
May 24 '11 #4

Sign in to post your reply or Sign up for a free account.

Similar topics

4
30117
by: B.N.Prabhu | last post by:
How to delete first row from an Excel Sheet using C#.Net. Please Help. Its very urgent.
5
32871
by: Rishika14 | last post by:
Hi, Somebody pls tell me how to export data from webpage to excel sheet using java script. rishika
1
3461
by: gowthamkumar | last post by:
HII ... please give me a code to open a new excel sheet using VB so that i can also directly add some contents in the cells of the excel sheet in VB itself .. i ve use the existing excel sheet code...
4
8753
by: sandeep123456 | last post by:
hi, can we send data from html to excel sheet using java script sandeep
2
2671
by: abiramii | last post by:
Hi How to Import datagridview datas to excel sheet using c#.net(win forms)
3
2727
by: dileepkms | last post by:
can we disable copy and paste functionality for excel sheet using javascript? if we do it, can you send me the code
2
2672
by: sanjuindia2005 | last post by:
How can i read the excel sheet using javascript ?
4
15386
by: =?Utf-8?B?Sm9zaW4gSm9obg==?= | last post by:
I could create MS Excel sheet using ASP.NET 2.0 with C# but it is not being created in some systems, following error occurs when the program compiles : Microsoft Office Excel cannot open or...
1
3001
by: sree ram | last post by:
code for getting maximum rows in excel sheet using perl script
0
7048
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
7088
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
6956
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
5342
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
4783
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
4485
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
2997
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
2986
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
563
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.