C# - Calculate A Formula Which Changes Value Each Day?
Feb 25, 2009
I use the following columns stored in a SQL table called tb_player:
Date of Birth (Date), Times Played (Integer), Versions (Integer)
to calculate a "playvalue" (integer) in the following formula:
playvalue = (Today - Date of Birth) * Times Played * Versions
I display upto 100 of these records with the associataed playvalue on a webpage at any time.
My question is, what is the most efficient way of calculating this playvalue given it will change only once a day, due to the (today-date of birth) changing? The other values (times played & versions) remain the same.
Is there a better way than calculating this on the fly each time for the 100 records? If so, is it more efficient to do the calculation in a stored proc or in VB.NET/C#?
View 2 Replies
ADVERTISEMENT
Oct 11, 2011
Using VB.Net (Windows Application)[cod]e...
f1 = a + b * c means i have to pass the value a = textbox1.text, b= textbox2.text, c = textbox3.text
View 1 Replies
Sep 27, 2010
It's possible to calculate a string that has a formula something like:
dim val as integer
dim formula as string = "(5/1.5) + 10"
val = formula
And the result should be 13.33
View 1 Replies
Jul 15, 2011
I have a text box for user key in a formula,like '1+3-5',and i need to solve and display the answer.
Also need to handle the brackets,like '9+(2*4)'.
Operation is plus,minus,multiply,devide.
View 5 Replies
Aug 27, 2011
I have the following columns : (Using Excel Formula)
A B
------------------------
1 | Date | Value |
------------------------
2 | 8/20/2011 | 92.8 |
3 | 8/21/2011 | 92.4 |
[code]....
I want to calculate the difference between 1st Value (B2) and last Value (last populated row in column B)
Edited :
Using formula : =B2-B6 is not what's required. (I want diff in Cell C2)
I want when the user enters the value in B7 it automatically shows the difference between B2 and B7, when he populates B8 then it shows the diff between B2 and B8 and so on.. I don't want some direct method to do this in Excel and not by iterating all values to check the last value.
View 3 Replies
Feb 20, 2009
I want to place two radio buttons in so I can select one of them to use one formula, and then select the other to use another formula. I want to use the I=P(1+r)^n formula and I=P(1-r)^n formula with the radio button text showing Appreciation and Depreciation.
Heres my copy of the original code.
Public Class Form1
Private Sub cmdExit_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdExit.Click
End
End Sub
[CODE].......................
View 5 Replies
Mar 30, 2009
I am trying to calculate the number of years for my calculate age event handler, however i am apparently missing a method or whatnot because im trying to calculate the age , can anyone suggest help on this. I need to subtract years to get my age but when i try the birthdate.Subtract (currentDate) method i get an error about not able to convert from LONG?
So below is what I have.
Private Sub btnCalculateAge_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnCalculateAge.Click
Dim currentDate As Date
Dim BirthDate As Date
Dim Age As Long
[CODE]
View 7 Replies
Jun 2, 2011
check the attached 2 file. one is .docs file another is .bmp file. Problem is that i want add that formula in database through vb.net. what will be data type in sql serve? and how to manage in vb.net??
View 1 Replies
Oct 9, 2009
I am reproducing a program written in C to vb.net and I am getting different results on a math formula. I am sure it is something simple that I am overlooking. Here is the formula in C
num = (10 * 9 * 80900 * 0501) & 0xffff;
Here is the same formula in vb.net
num = (10 * 9 * 80900 * 0501) AND &HFF
View 3 Replies
Apr 1, 2009
how to generate the formula. want to use arraylist to store and for loops to loop the formula til the system can detect which staff it should giv the ticket to..below is the scenario:this is a helpdesk system..so each ticket they submit muz be auto assigned to a staff to attend their ticket..each staff has a different quota..so i came out wid this algorithm on hw to determine who the ticket shld go to..
for ex: i set one ticket's quota is 7%
staff A's quota - 47% staff B's quota - 35% staff C's quota - 18% so to knw how many tickets A get den B getx 1 ticket and how many tickets B get den C gets 1i came out wid a calculation like this -
Staff A - 47% / 7% = 6.7(max no.of tickets he can receive foe a period of time)
Staff B - 35% / 7% = 5
Staff C - 18% / 7% = 2.5
so first i compare A&B whr i took 6.7/5 = 1.3 -> so every 1.3 ticket A gets,B gets 1 ticket den i compare B&C whr i took 5/2.5 = 2 -> so every 2 ticket B gets,C gets 1 ticket i wanna implement this concept in my code..but i dunno how to come up wid this formula..
View 14 Replies
Jul 3, 2009
First the requirements: By management requirements, I can't use open source code. I need the users to define their own formulas for a project. My users don't know how to code. The formulas need to be saved somehow, and being read later. I need to debug the formulas written, so I need to be able to see and understand them. The formulas used are quite specialized and specific (actuarial formulas). Adding new formulas (functionality) must be done in fast and maintainable way.
[Code].....
View 2 Replies
Apr 25, 2012
I need a code that will convert decimal to binary. My current code doesn't work and just crashes, any suggestions on what I should do
For i = 1 To 17
Me.lstDec.Items.Add(i)
[code].....
View 3 Replies
Jun 11, 2010
I have a formula, found in an Excel sheet that I have to convert to vb.net...I can't figure it out, eventhough it's seems a quite easy formula to me.the formula is: Mod(X + Int(Y/100000);20)In fact if I render some values...and use the Mod function in Excel or in VB.NET it gives me other results.
View 2 Replies
Mar 23, 2010
I have made calculator in visual basic that can calculate the costs of products. You first select the type of product. Then you insert the dimensions. After that it calculates de costs. The type op products are stored in a Access database. In this database is stored a formula as a string. The problem is that i can't caculate the selected string with the formula and the given dimensions.
View 10 Replies
Apr 27, 2011
In the user input of a textbox I would like that the user can input a formula to make it easier for him. So instead of inputing 400 I would like the user to have the possibility to input as 8*50. Is there a command for vb2008 to calculate the answer of this formula inputed by a string ?
View 2 Replies
Mar 30, 2011
I'm trying to create a calculator that does this formula : Amount=Principal*(1+InterestRate) The point of it is to Calculate the compound interest earned over however many years the user selects between 1-15 from a listbox. The user also inputs the investment & interest rate. When calculate is clicked the results show in another listbox below.
year 1 $$$$$$
year 2 $$$$$$
etc
[Code]....
I stopped the code at Year 2 as it repeats the ElseIf to EndIf unitl selectedIndex = 15 & intYear 16.
it works for Year 1 but the problem comes with Year 2-15. it needs to take the value from the previous result in lstOutput and use it in the formula for principle.
View 1 Replies
Apr 20, 2009
I have created crystal report for billing summary purpose in windows application.I have sorted out my data on billdate. now i want to claculate subtotal on datewise in crystal report then how to write the formula for that.
View 3 Replies
Jun 21, 2011
I want to write a formula to SUM from column B4 to M4, this should be done using vb.net programming.
I tried using the following stuff:
oXLWsheet.Range(4, 14).Formula = "=SUM(oXLWsheet!$B$4:M$4)"
"=SUM(B4:M4)"
"=SUM(B4,C4,D4,E4,F4,G4,H4,I4,J4,K4,L4,M4)"
Nothing is working for me. I'm getting the following error when I run the code:
"Exception from HRESULT: 0x800A03EC".
View 2 Replies
Jun 11, 2011
I want to create an algorithm or formula that gives me the following combinations below. I have manually printed out all the combinations for the example containing 4 tables with respective values.
This is not permutation because i need the combinations to always follow the unique format [code]...
View 2 Replies
Apr 4, 2011
I am using Crystal Report 10.5.3700.0. I have created a report which is using stored procedure. Now from vb.net code (in VS2005) I set the selection formula like: proSaleByPerson;1.PersonsId=1
But when the report load its giving following error "Query Engine Error 'ADO Error Code:0x'", Failed to open a rowset. Keep in mind that all other reports are working fine only that reports creat problem which are using stored procedure, when setting the selection formula.
View 1 Replies
Jun 5, 2011
i have a problem with my crystal reports selection formula, i have two forms form1 and form 2. in form 1 i have combobox where you can select the values to appear in form2 crystal report viewer but when i run form1 and select an item from dropdownlist visual studio throws an error this my selection formula "{StaffInformation.Specialty} LIKE '" & Form1.combobox1.text & "'"
View 1 Replies
Dec 29, 2008
I'm creating a Macro for reporting purposes and trying to create a formula that will look at a prior days report, save it out, and work off of that one.
View 2 Replies
Jun 21, 2010
How can I print a mathematical formula in a form? For a example I found in wikipedia a guide to do it in HTML: [url]
[URL]
But how can I do it in VB2008, showing the formula in a form?
View 1 Replies
Dec 4, 2010
While learning to Orientate of the Last layers of a rubik's cube, I thought that it would be fun to make a vb.net application for it(I know that it's super hard to do)I'm starting around the center cube, but was wondering if I did a part right..I'm working with squares, and was wondering the length from one corner to another. [code] Trying to figure out the distance from the top left to bottom right,I used the distance formula to test it out and got 70.71067811865475 sqrt((-50-0)^2+(-50-0)^2)Is there an easier or more efficient way to get this number than using the distance formula?
View 2 Replies
Dec 23, 2010
i am currently making a project which is to make a cinema screen booking system. Im a beginner of course`*My main problem is that although i have most of what is working i need to find a formula to give the full result (overall price) in a label.*My other problem is the fact that when i interact with my form certain things dont auto refresh when i change certain values e.g i change number of seats but it doesnt auto refresh the price from times1 to times2. OR i click one discount radiobutton which works then another after but nothing changes and it keeps the first radiobutton's value.Okay in my menu i have a ComboBox (ComboBoxScreen) for choosing the film and there are 3 films to choose from in the drop menu each with their own price.I also have a Textbox (NumberSeats) for inputting a number of seats you want to book for the chosen film.And lastly there are 3 radio buttons each with different discounts.. e.g No discount, 10% off and 25% off. If selected each gives discount to full price.A formula to work out the overall price uses all three functions/tools above.My current code for the combobox and radiobutton part is as follows: [code]
View 1 Replies
Jul 6, 2011
i am currently making a project which is to make a cinema screen booking system.My main problem is that although i have most of what is working i need to find a formula to give the full result (overall price) in a label.
My other problem is the fact that when i interact with my form certain things dont auto refresh when i change certain values e.g i change number of seats but it doesnt auto refresh the price from times1 to times2. OR i click one discount radiobutton which works then another after but nothing changes and it keeps the first radiobutton's value.Okay in my menu i have a ComboBox (ComboBoxScreen) for choosing the film and there are 3 films to choose from in the drop menu each with their own price.I also have a Textbox (NumberSeats) for inputting a number of seats you want to book for the chosen film.
And lastly there are 3 radio buttons each with different discounts.. e.g No discount, 10% off and 25% off. If selected each gives discount to full price.A formula to work out the overall price uses all three functions/tools above.My current code for the combobox and radiobutton part is as follows:
QuotePublic Class txtSeats 'name of form of which is being used'
Private TEN_DISCOUNT_Decimal As Decimal = 0.1D
Private TWENTY_DISCOUNT_Decimal As Decimal = 0.25D 'percentages?'
[code]....
Where FilmCost is the price of each individual film (one is £4.25 shown above)OR lblCost is filmprice times seats.Where TotalDiscount is the discount worked out.Where TotalCost's is a value that can be shown in a label as the overall price.
View 4 Replies
Jul 17, 2009
How do I fix a formula where that results in error# when divided by 0?
View 5 Replies
Jun 16, 2010
I have a question about storing formulas on a database and bringing them back in as a string. I want to have the user enter in a width and that number will be passed to intWidth. Lets say a user enters 8 into txtWidth, strRange will = "Less Than 10" and in the database I will have a Width_Range column with "Less Than 10" and a corresponding Equation column to go with it. If I have a formula such as (1800 * 1.8) saved in that database column, the code I have works and does the calculation.
[Code]...
View 8 Replies
Jul 26, 2011
I have complex formula calculating the value of a cell and it calculates the value for me. I want to get rid of the formula from the cell and want to retain the calculated value.
I have :
Dim range As Excel.Range = getRange()
For Each cell in range
' What should do to retain the value and get rid of the formula in the cell.
Next cell
View 2 Replies
Jul 22, 2009
i am generation a excel sheet from vb.net and have a question on inserting a forumla from vb.net into an excel sheet.
I am creating this sheet out of vb.net but with a statement like this:
worksheet.cells (1,10) = "myvalue"
For my formula i need the read cellnam like "A1". But i have only the value cells (x,y). How can i get the real cellname for my formula or how am i able to insert a formula with the given information (cells(1,1))?
View 1 Replies