Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
655 views

can i create my own formula for calculated field in sharepoint 2010 using c#

i want to create a programmatically calcluated field for sharepoint 2010 using visual studio 2010 in c# language. is there a way to set a formula that will call to my own function and return a result ...
2
votes
1answer
189 views

Getting the calculated font-size of a div

As we know, the font-size of a HTML-element is either set explicitly like style="font-size:10px" or calculated by the browser according to rules and properties from style sheets and parent properties. ...
1
vote
1answer
66 views

How to use LINQ with calculated properties in a single pass?

I'd like to make a LINQ query, extracting dynamic properties (calculated fields) of my entities in a single pass, without get the error "The specified type member 'EntityKey' is not supported in LINQ ...
1
vote
1answer
32 views

MDX multiple EXCEPT filter in calculated member

I have following query for calculated member: SUM( EXCEPT([Policy].[Policy Status].[Policy Status],[Policy].[Policy Status].&[Void]) , [Measures].[CountPolicyEndorsesNull] ) What I want ...
1
vote
2answers
183 views

MDX Calculated member filter by dimension attribute

I want to create a calculated member and filter it by dimension. This is WORKING example: ( [Policy].[Policy Status].&[Void], [Policy].[Tran Type].&[Renewal], [Measures].[FK ...
1
vote
1answer
71 views

How to display a notice if a column in a formula is blank in a calculated column

I have made a list with three column, Maintenance Cycle (with options such as Monthly, Quarterly etc), Last Maintenance Date (date picker) and Next Maintenance Date (calculated column). ...
1
vote
2answers
105 views

Summing a calculated field in the same query can it be done?

PARAMETERS [First Date] DateTime, [Second Date] DateTime, [Shift] Text ( 255 ); SELECT Main.[Mth/day], Main.Shift, ([Run Hrs]*[Actual Lbs/hr]) AS [Gross Production - LBS], [Scrap Lbs ...
1
vote
2answers
280 views

Calculated formula for sharepoint list to return “expired”

The formula I am using is: =IF((DATEDIF(Todaycalc,[TERMINATION DATE],"d"))<0,"Expired","") but while it calculates for the NO, I am getting a #NUM error for the part I want to return as ...
1
vote
1answer
446 views

LINQ to SQL doesn't update if I include a calculated column

I am populating a DataGrid with the following LINQ code : Dim myClients = From p In dc.Persons _ Select p I can navigate my DataGrid, make changes and then click on a ...
0
votes
0answers
3 views

Analysis Service Calculated Rollups

I have a calculated member unit cost (3rd column) which is cost divided (1st column) by volume (2nd column). The forulay works correct at the leaf level, however the unit cost should not be summed ...
0
votes
1answer
181 views

MDX Calculated Member Issue

I have been a long time lurker of stack overflow and I am hoping this strong community might be able to help solve an issue I have been having for a while. I have done a fair amount of research and I ...
0
votes
1answer
54 views

Mdx Query Problem

Hi I m working on mdx query ,and i thought i solved a problem but.... I ve created a calculated member iif( isleaf([DimensionArtikujDG].[DimensionArtikujDG].CurrentMember), ...
0
votes
1answer
223 views

SSAS - Need to have a calculated member that uses as a denominator one particular dimension value

I have a cube that I built in SSAS for general ledger data. The cube uses 2 fact tables. One for accounts that are "normal" dollar based accounts and the other is for unit / statistical accounts - ...
0
votes
2answers
288 views

Conditional values for calculated column in MySql

I'm trying to calculate the difference between two date columns, which works just fine as: select (ship_date - due_date) AS DaysTaken; Basically, I want to determine if orders were shipped on time ...
0
votes
2answers
1k views

Can SharePoint column be changed from date/time to calculated date/time

I have a SharePoint list with a column that was originally defined as date/time and has been manually populated with date/time information. I'd really like to populate this column automatically based ...
0
votes
1answer
84 views

Query a column and a calculation of columns at the same time PostgreSQL

I have two tables, Products and BundleProducts that have o2o relation with BaseProducts. A BundleProduct is a collection of Products using a m2m realtion to the Products table. Products has a price ...
0
votes
2answers
702 views

How to use a calculated column in where condition?

Please tell me how to use a calculated column in where condition in oracle 9i? I want to use something like select decode (:pValue,1, select sysdate from dual, select ...