Viewing 15 posts - 46 through 60 (of 91 total)
Great, that worked a treat. Thanks!
Sam
May 23, 2007 at 12:34 am
I can virtually use Bill's formula, which is great. The formula I have is:
Avg (LastPeriods (3, [Time].[FiscalMonth].CurrentMember), [Measures].[Cc Matl Cost])
Note that my Time dimension has four hierarchies: fiscal week/month...
May 21, 2007 at 1:08 am
Thanks Steve, I should've checked there first. Looks like I'll be able to work it out from there.
May 21, 2007 at 12:50 am
Thanks James,
I've come up with the following code:
CREATE VIEW VwHistoryCostPopulator AS
SELECT TOP 100 PERCENT list.item_id,
1 AS trxtype_id,
1 AS reftype_id,
list.time_id AS trx_date_id,
0 AS quantity,
-- repeat about 10 times for relevant different...
May 21, 2007 at 12:32 am
I've come up with the following code to give me the maximum cost for each day where transactions exist:
SELECT MAX(inv_trx_id),
item_id,
trx_date_id,
MAX(sc_total)
FROM FactInventoryTrx
GROUP BY item_id, trx_date_id
ORDER BY item_id, trx_date_id
Is this useful to...
May 18, 2007 at 1:01 am
Hi Jack,
I've just tried both of those and got the same error. My entire function is here, if it helps:
---------------
Public Shared Function PcDiff(LastYear As Single, ThisYear As Single) As...
May 17, 2007 at 6:01 pm
There is a query builder in SSRS 2005 which makes things a lot easier. As long as you don't need anything too technical, you can get by without MDX....
May 16, 2007 at 11:24 pm
Hi Steve,
I am using SSRS and created a named set in SSAS. I created a non-queried list of values for my parameter and pointed one of them to my...
May 16, 2007 at 11:12 pm
Hmmm, I spoke too soon. While that function does what I asked for, I realise I asked for the wrong thing.
The MDX for my KeyAccounts calculated member is as...
May 16, 2007 at 5:38 pm
Perfect, and so logical! Thanks for that
May 16, 2007 at 4:54 pm
We've tried using Crystal Reports (v9 - v11) and had no end of problems with it (though we haven't tried Business Objects). SSRS has proven to be much more...
May 15, 2007 at 5:05 pm
Are you excluding anything from the totals? The aggregates coming from Analysis Services are already aggregrated and are only for the full amounts. I don't actually know the...
May 15, 2007 at 12:38 am
I'm interested in how to do this as well. I'll try and help out, but I don't know a lot about this.
There's perhaps four parts to this:
1. Getting the...
May 15, 2007 at 12:30 am
Hi Wendy,
There's a few reasons why this could happen, but it sounds like there might be some kind of sender verification happening. Can you first check that the "from"...
April 26, 2007 at 6:57 pm
I started out using matrices but soon found that tables are far more flexible. Have you tried using a table instead? You can then add a column and...
April 15, 2007 at 4:36 pm
Viewing 15 posts - 46 through 60 (of 91 total)