Tagged Questions
The calculated-field tag has no wiki summary.
2
votes
4answers
269 views
Using a Calculated field in SQL Query
I have a sql query in which i have a calculated field which calculates the Contribution Margin. I get it to display and the math works fine. The problem i'm having is that i want to only display the ...
2
votes
5answers
487 views
How can I implement “writable calculated” fields in a TDataSet?
I am in the need to add additional fields to a TDataSet that don't exist in the underlying database but can be derived from existing fields. I can easily do this with caclulated fields and that works ...
2
votes
3answers
194 views
T-SQL Operations on a Calculated Date Field
Can I do WHERE operations on a calculated date field?
I have a lookup field, which has been written badly in SQL and unfortunately I can't change it. But basically it stores dates as characters such ...
2
votes
3answers
2k views
Adding a calculated field to a Query at run time
I'm getting data using a query in Delphi, and would like to add a calculated field to the query before it runs. The calculated field is using values in code as well as the query so I can't just ...
2
votes
1answer
339 views
Stupid problem with Javascript calculations and postbacks
I'm working on an ASP.NET web app where I'm using a Wizard to take the client through a large series of steps.
One of the steps includes calculating a bunch of numbers on the fly... the numbers ...
2
votes
2answers
517 views
Reading DataSet structure without reading it's data
Scenerio:
I want to add a calculated field to given (any) dataset during runtime. I don't know any other way to obtain a dataset structure other than performing DataSet.Open method.
But the Open ...
1
vote
1answer
44 views
ASP.NET: How to declare calculated field in aspx file if this is possible?
I have a GridView with 2 BoundFields like this:
<asp:BoundField DataField="UnitPrice" HeaderText="Unit Price">
</asp:BoundField>
<asp:BoundField DataField="Quantity" ...
1
vote
1answer
169 views
EOL stops python on Calculate Field
Would anyone be able to help me modify these scripts to ignore the error and continue running ? I just need to figure out how to make the script skip over these errors and finish the rest of the ...
1
vote
1answer
837 views
How to Create Custom Function for DevExpress XtraReports Calculated Field
I know how to create Custom Fields in a DataSet for a Report in DecExpress XtraReports.
But I need to Declare a Custom Function in available function list for Calculated Fields. I do not know how to ...
1
vote
2answers
594 views
Ruby on Rails - before_save calculation on accepts_nested_attributes_for
I have an invoice model, that "has many" invoice items. I have a form that allows you to create/edit an invoice, and this form accepts nested attributes for the invoice items.
In my invoice model, ...
1
vote
1answer
413 views
How to generate a Random number for a calculated field in SharePoint?
Is there a way to generate a random number for a calculated field, in a SharePoint list ?
0
votes
2answers
25 views
SQL Create Field based on Other Field in Record
I would like to create a field in my sql query based on the data in another field. For example:
First Name Last Name Hometown State (created column based on Hometown)
Phil Smith ...
0
votes
0answers
74 views
Retrieving a value for a previous record in MS Access, best way to implement this
I have the following problem
There is a table with the following structure:
Employee (Employee_Code, TransactionDate, Service_Level)
The data is extracted from a third party database and dumped into ...
0
votes
2answers
53 views
Where should we calculate fields?
I'm currently working in a Silverlight / MS SQL project where the Entity Framework has not been implemented and I would like to know what's the best practice to deal with calculated fields in this ...
0
votes
2answers
317 views
how to populate mysql column value based on a formula?
I'm working on a mysql table with following columns -
item_price, discount, delivery_charge, grand_total
Item_price, discount, delivery_charge all vary depending on the item under consideration, ...
0
votes
1answer
298 views
Listbox.DisplayMember won't display value from calculated property
I'm using SubSonic 2.2 for my DAL and extended one of my classes with a calculated property that returns a string containing another property with indenting based on the level of the outline at which ...
0
votes
3answers
258 views
Calculated field from 3 other fields T-SQL
I'm trying to create a calculated field in my stored proc. I have a projectID column and 3 columns with a 'yes' or 'no' values in them which correspond to the region impacted. I have to collect all ...
0
votes
1answer
61 views
Best design pattern for calculated values on a subclass?
Say I have two types:
ClassA
{
int ValueA;
int CalculatedA;
}
ClassB
{
int ValueA;
int CalculatedA;
int ValueB;
int CalculatedB;
}
CalculatedB requires ValueA as well as ...
0
votes
1answer
69 views
SQL Function that uses a time-stamp to output how old a question is
I have a calculated field whose value I want to modify depending on how old the entry is. Is there way in MySQL to take a time stamp and use it to determine how old a query is.
Here is the ...
0
votes
0answers
40 views
UpdateFields element does not work for Office 2003
I am using the updatefields element as stated here:
http://msdn.microsoft.com/en-us/library/documentformat.openxml.wordprocessing.updatefieldsonopen.aspx
When I open the document in word 2007/2010 I ...
0
votes
1answer
376 views
Sql Analysis Services Current Date
I need to perform a calculation in SSAS which only applies to the current and future months (it can't be applied retrospectively using the available data).
I can do this by using the calendar ...
0
votes
2answers
213 views
SQL Calculated Field
I'm creating a view as such:
CREATE VIEW all AS
SELECT m.id, m.title, m.description, m.date, m.views, r.rating, r.id
FROM riv_montage m, riv_ratings r
But I'd like to create a calculated field on ...
0
votes
1answer
253 views
Can a SharePoint Calculated field check for existence of other columns?
I want to use OrderBy in SPSiteDataQuery to sort items by data, however, the field containing the date differs between the content types.
Can this be solved by sorting with a calculated field? I am ...
0
votes
4answers
4k views
How can I set up a simple calculated field in SQL Server?
I have a table with several account fields like this:
MAIN_ACCT
GROUP_ACCT
SUB_ACCT
I often need to combine them like this:
SELECT MAIN_ACCT+'-'+GROUP_ACCT+'-'+SUB_ACCT
FROM ACCOUNT_TABLE
I'd ...
-1
votes
1answer
56 views
how can i make a autocalculate field in postgresql?
I have this table
CREATE TABLE game (
idp serial NOT NULL,
start_pl integer NOT NULL,
finis_pl integer NOT NULL,
points ...
-1
votes
2answers
357 views
calculate form fields using jquery
i want a jquery source to calculate my form
<form>
<input type="radio" name="type" value="1000"> $1000
<input type="radio" name="type" value="2000"> $2000
...