Tagged Questions
The calculated-columns tag has no wiki summary.
4
votes
3answers
791 views
Invalid column name error in WHERE clause, column selected with CASE
I have a (rather complicated) SQL statement where I select data from lots of different tables, and to cope with a bad legacy data structure, I have a couple of custom columns that get their values ...
4
votes
5answers
3k views
How can I cache a calculated column in rails?
I have a tree of active record objects, something like:
class Part < ActiveRecord::Base
has_many :sub_parts, :class_name => "Part"
def complicated_calculation
if sub_parts.size > 0
...
4
votes
2answers
3k views
SQL Server 2005 Computed Column Result From Aggregate Of Another Table Field's Value
Sorry for the long question title.
I guess I'm on to a loser on this one but on the off chance.
Is it possible to make the calculation of a calculated field in a table the result of an aggregate ...
3
votes
1answer
198 views
Sharepoint Date Time Calculated Column
I have 2 columns sDate ( Start Date ), eDate ( End Date ) in my list.
The functionality I need
if(eDate == "" )
print sDate // Nov 10
else if(MONTH(sDate) == MONTH(eDate))
print sDate("mmm dd") + ...
3
votes
4answers
461 views
Adding virtual columns to current table in Doctrine?
I'm using Doctrine 1.2 with Symfony 1.4. Let's say I have a User model, which has one Profile. These are defined as:
User:
id
username
password
created_at
updated_at
Profile:
id
user_id
...
3
votes
2answers
1k views
How do I add a calculated column to my EF4 model?
Given a "User" table and a "Login" table in MS SQL 2008:
CREATE TABLE [dbo].[User_User](
[UserID] [int] IDENTITY(1000,1) NOT NULL,
[UserName] [varchar](63) NOT NULL,
[UserPassword] ...
3
votes
2answers
443 views
NHibernate: Conditionally load a calculated column
I have the following proprty
<property name="Allocated" type="decimal" formula="(select sum(a.AllocationAmount) from Allocation a where a.TransactionId = TransactionId)" />
This loads the ...
3
votes
1answer
372 views
Syntax error in SharePoint calculated column formula
Is it possible to debug SharePoint calculated column formulas?
I am trying with a really simple SharePoint calculated formula =IF([YTD]<[Budget], "OK", "Not OK"). This being a Danish installations ...
3
votes
3answers
892 views
SELECT with calculated column that is dependent upon a correlation
I don't do a lot of SQL,and most of the time, I'm doing CRUD operations. Occasionally I'll get something a bit more complicated. So, this question may be a newbie question, but I'm ready. I've just ...
3
votes
1answer
429 views
Getting started developing for SharePoint
This is in response to the answer given for the case: http://stackoverflow.com/questions/702556/sharepoint-calculated-column-replace-all-spaces
I'm having the exact issue that the original poster has ...
3
votes
4answers
6k views
MySQL: Calculated Column Based on Two Calculated Columns
I'm trying to do a rather complicated SELECT computation that I will generalize:
Main query is a wildcard select for a table
One subquery does a COUNT() of all items based on a condition (this works ...
2
votes
1answer
53 views
SQL View for calculated column
I have a table named games with these columns: home_team, away_team, home_score, away_score
I want to create a view that adds a column winner which sets the winner to the home_team, away_team or ...
2
votes
2answers
275 views
Microsoft Access: How to do IF in Calculated Field Expression?
I want my calculated field to have a conditional value like this:
if fieldA is 0 then set fieldC to 0
else field C = fieldB / fieldA
How do I do this? Thanks.
And while you are at it, how do I do ...
2
votes
3answers
152 views
How can I get column data to be added based on a group designation using R?
The data set that I'm working with is similar to the one below (although the example is of a much smaller scale, the data I'm working with is 10's of thousands of rows) and I haven't been able to ...
2
votes
4answers
293 views
Use value of a column for another column (SQL Server)?
lets say I have a huge select on a certain table. One value for a column is calculated with complex logc and its called ColumnA. Now, for another column, I need the value from ColumnA and add some ...
2
votes
2answers
437 views
Get Year of CreatedBy date in a calculated column
I am trying to create a calculated column in SharePoint 2007. I want it to return the year of the CreatedBy column date and set the day to be 1 and the month to be January the data type returned by ...
2
votes
1answer
272 views
SQL Server Calculated Column
I have two columns, both int's, Wins and Losses. I have a calculated column WinPercentage as a decimal(14,3), I want this to be:
WinPercentage = (Wins + Losses) / Wins
What's the syntax for that?
2
votes
4answers
94 views
Having a generated column depend on other generated columns
What would be the best way of doing this?
select 'blah' as foo,
CASE
WHEN foo='blah' THEN 'fizz'
ELSE 'buzz'
END as bar
As it is written right now I get an ...
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
1answer
240 views
MySQL: Sum Subqueried Columns
Is there an elegant way to do this in MySQL:
SELECT (subquery1) AS s1, (subquery2) AS s2, (s1+s2) AS s3
or must I resort to
SELECT (subquery1) AS s1, (subquery2) AS s2, ((subquery1)+(subquery2)) ...
2
votes
2answers
412 views
SQL/.NET TableAdapters - How do I strongly-type calculated columns in either the database or the DataSet?
We use calculated columns in a few SQL Server 2005 tables which always return data of a specific type (bit, varchar(50), etc...).
These tables are consumed by a .NET data layer using strongly-typed ...
2
votes
2answers
4k views
Sharepoint: Calculated Column replace all spaces
Seems like it would be a simple thing really (and it may be), but I'm trying to take the string data of a column and then through a calculated column, replace all the spaces with %20's so that the ...
2
votes
3answers
1k views
SQL Server: preserve calculated fields with a SELECT INTO
My company performed a data migration recently (in a SQL Server 2005 database) and we noticed that some tables created with SELECT INTO didn't maintained the calculated fields of the original tables, ...
1
vote
2answers
30 views
What is wrong with this calculated field for total hours between two times in SharePoint 2007?
I am attempting to get the total hours between two times in a SharePoint 2007 list. Right now I have the formula as...
=INT(([Column2]-[Column1])*24)
...which I have looked up and says that it is ...
1
vote
1answer
37 views
php multiple alternate column loop
im very new to php and html and im trying to create an ouput like this coming from a database table recordset. where "table record n" is the column from the db table record set
basically the table ...
1
vote
1answer
76 views
SQL Query to Move Rows to Columns in a table, plus aliases
I'm trying to get data from one database and put it in the format of a second database, where the schemas are different. I'm trying to get data that is in multiple rows of one table into a single ...
1
vote
2answers
78 views
Calculation library
I need to do some calculations like this (simplified):
amount1 amount2 amount3 amount4 total
5000 500 1000 350 6850
3.55% ...
1
vote
1answer
156 views
Calculated Field- Sharepoint 2010 - Ageing
Again a calculated field question, How can I create a calculated field to find out, what is the age of the entry.
In the list I will have a created date field, from that I would like to create a ...
1
vote
2answers
41 views
mySQL Query design - calculating a vote score for multiple content items
I have a content items table structured like
| contentid | message | categoryid | userid | dateadded | etc..
15 foo bar 3 4 somedate
...
1
vote
1answer
27 views
Output Multiple Aggregates From One Table
I have a single table 'EMPLOYEE'. I need to count the 'emp_no', so that I have a multiple columns with each aggregate based on different restrictions. Not sure how to write to get the below output.
...
1
vote
3answers
144 views
Automatic Field Update/ Calculated Field
I've been trying to find out if the following scenario is possible, I'll do my best to describe!
Table - trespondent
id, company, staff, responses
Table - tresults
id, q1, q2, q3, q4, q5
...
1
vote
3answers
6k views
SharePoint Calculated column based on other List data
Possible to set the value of a calcualted column to data from another list? Say I have a lookup column, and based on my selection, another column from that lookup list?
Also, Does the calculated ...
1
vote
3answers
862 views
SQL Server - Calculated column Sum from different table
I have two tables (Items and Item_Types), and I want to do something like the following as a formula in a calculated column in the Item_Types table:
SELECT SUM(Items.Qty_In_Stock) FROM Items WHERE ...
1
vote
2answers
128 views
MySQL: How to select values from one table and order by calculated values from a different table?
Basically I have a table with comments:
id target_item_id comments
--------------------------------------
1 435 blah blah
2 643 blah blah
3 ...
1
vote
1answer
177 views
Making html-table work as an Excel document
I'm working on an orderform to a bookshop-website. It's just like a normal table in HTML and I wonder how to make a cell calculate other cell's value and display the sum of it. As it works in Excel.
...
1
vote
1answer
380 views
C# Datagrid multiple columns to one column
I am using datagrid control to represent some data. I want to show values from multiple columns in one cell. How to achieve that? Currently my datagrid is binded to List. List elements implements ...
1
vote
1answer
301 views
HTML Calculated Column Formula Help!
I'm trying to use a HTML calculated column so that I can display a RAG status bar for my tasks in SharePoint. I had it working until I added the IF containing % complete. Can you tell me where I'm ...
1
vote
1answer
233 views
mysql calculation field stored in another field
I have fields in mysql that look like this:
constant1 , constant2, variable1, variable2, formula
The formula field stores a formula utilizing constant1, constant2, variable1 and variable2.
For ...
1
vote
2answers
3k views
how to create calculated field in mysql?
i have a table like below:
create table info (username varchar(30),otherinfo varchar(100));
now i want to alter this table to have new field and this field has to have default value as
...
1
vote
3answers
525 views
Calculating an array of values in C# (Formula convert from Excel)
I'm currently building a semi-complicated calculator which is basically a conversion from an Excel spreadsheet I've been provided.
I've nailed most of it but there's a part in the Excel spreadsheet ...
1
vote
1answer
806 views
jqgrid - change column header name automatically according to the width
in my site , i have a jqgrid table.
by default, the names of the columns (header) is longer than the width for column, because that i set the name with an ellipsis.
however, when resizing the ...
1
vote
1answer
113 views
Top 10 collection completion - a monster in-query formula in MySQL?
I've got the following tables:
User Basic Data (unique)
[userid] [name] [etc]
User Collection (one to one)
[userid] [game]
User Recorded Plays (many to many)
[userid] [game] [scenario] [etc]
...
1
vote
1answer
779 views
How do I link a calculated column to a column in another list in SharePoint?
I have 2 lists with some common columns. I need to multiply the Calculated Sum value (of a certain column) in one list by a particular column value in another list.
How would I achieve this?
1
vote
1answer
937 views
Sharepoint, Calculated column, IF function and date
I am trying to add a calculated column.
I have a date column containing the date a meeting is scheduled. From this column I need a code which can return if the meeting is scheduled in Q1, Q2, Q3 or ...
1
vote
3answers
2k views
MySQL Views: Referencing one calculated field (by name) in another calculated field
How can I define a view that has two calculated fields, for instance...
('TableName'.'BlueSquares' + 'TableName'.'RedSquares') AS TotalSquares, ('TableName'.'BlueCirles' + 'TableName'.'RedCircles') ...
1
vote
1answer
705 views
Modify (jQuery) JS to include code to track changes done on Checkbox and Dropdown list and update price
I have a code in javascript and I am using jQuery Calculation plugin (can be downloaded from link text). The form that I have is kind of like shopping cart form i.e. the prices update according to the ...
1
vote
3answers
483 views
Wrong Result after Refresh pressed on DbNavigator Delphi
I have faced a very strange situation here.
I am accessing database (MDB) through JET. I use DBGrid and DBNavigator to allow user access it. Dataset is created using TADOQuery component, with the ...
1
vote
1answer
575 views
Impact on NHibernate caching for searches with results including calculated value mapped as a formula (e.g. rank)
When defining a calculated property using a formula in NHibernate, what are the implications for when the formula varies its result depending on the query restrictions, especially with regards to ...
1
vote
1answer
649 views
Calculated field in RoR (act as an ActiveRecord method)
I am building an app for cognitive tests in Rails.
I have a number of tests (Quiz objects) for my visitors. In the home page I want to show only quizzes that are ready for consumption: they must have ...
1
vote
3answers
6k views
SharePoint: Calculated Column Values Disappear When Editing List Item. Any ideas?
I have a calculated column in a custom SharePoint 2007 list, with the following formula:
=CONCATENATE("IR-",[ID],"-",LEFT(UPPER([Title]),25))
If an item is created in the list, everything is fine, ...