1
vote
3answers
19 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') …
0
votes
3answers
73 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
41 views
Modify (jQuery) JS to include code to track changes done on Checkbox and Dropdown list and update price
Hi all,
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 …
0
votes
2answers
32 views
MySQL View: How do I set default value of a calculated field to 0?
I use the following statement to create a percentage calculation in a view:
round(((Surveys.RejectedAsAdvertising / Surveys.Responses) * 100),0) AS PercentageAdvertising
Basically, I divide the …
0
votes
3answers
67 views
SQL Server and Calculated Fields?
So I'm creating an app that with users who can earn "points" in many different ways. Some of these point accruals occur because of their profile, actions they've taken, etc. (i.e. spread across …
0
votes
1answer
27 views
How to determine the number visible children in an hierarchical report?
I am using SQL Server Reporting Services 2008 to create a report. A table in this report displays hierarchical data, using a ID and ParentID field in the data. Each data row has an ID field and a …
0
votes
1answer
81 views
Flex: Add TOTAL column for AdvancedDataGridColumnGroup?
I have an AdvancedDataGrid that has a couple AdvancedDataGridColumnGroup's I would like each group to have an extra column, that shows the total of all the other columns in the group. I also need to …
0
votes
0answers
12 views
looks like circular refference but didnot work
I have 3 columns. Income(column E), expenses(column F) and remainder(column G).
Income(column E) - to use this column to input income value;
Expense(column F) - to use this column to input expense …
1
vote
1answer
81 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 …
0
votes
0answers
49 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 …
0
votes
1answer
88 views
Calculated Column formula
Hello All,
I have this question regarding creating a calculated column in SharePoint. My problem is that I need a column that will display text values in a dropdown list and once the user selects one …
0
votes
0answers
66 views
xcode core data: how do I get “computed” attributes?
Hello,
I have a entity in my core datamodell, "Tours". Tours has a attribute called "creationDate". In my iphone up, I want the tours to be seen in an table view, ordered by creationDate. This works …
0
votes
2answers
696 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, …
3
votes
3answers
217 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 …
1
vote
3answers
915 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 …
