expression language used in Microsoft PowerPivot for performing analytical calculations
0
votes
0answers
47 views
Array processing / prediction in DAX (powerpivot)
See the table below :
1 2 3
2011 100 125 155
2012 120 160
2013 110 X=?
What this means is that the figure for values originating from 2011 was ...
0
votes
0answers
31 views
SSAS 2012 (Tabular) DAX currency conversion multiple target values
I m novice in SSAS.
SSAS 2012 SP1 on W7 x64
I need to be able to convert all sums into reports into different currencies
...
0
votes
1answer
63 views
How to aggregate another measure in the same PowerPivot table?
I have a measure in my PowerPivot table that returns 1 or 0 conditional on the values of other measures in the same row.
I would like to write a new measure that returns a "total" of 1 if this ...
0
votes
0answers
42 views
DAX UNION on Summarized tables
I have the task of generating a DAX query that will return me current year and previous year data. Here's what I have as follows:
EVALUATE
CALCULATETABLE(
SUMMARIZE(
...
0
votes
1answer
202 views
PowerPivot DAX - Dynamic Ranking Per Group (Min Per Group)
I am searching for a method to utilize within Microsoft PowerPivot 2010 that will allow me to perform dynamic ranking that will automatically update the associated rank value based on filters and ...
0
votes
1answer
39 views
DAX formula in Sql Server Analysis Services
I am new to DAX, How can I calculate the runs of a particular player from below table. My table name PlayersData. For example, want to the total runs of the sachin tendulkar from the table. Need Dax ...
0
votes
1answer
138 views
Powerpivot data that spans over multiple filter values
I have outage information stored in Excel Powerpivot. I am trying to use Powerpivot to display and calculate uptime availability per month, however, I am a bit stuck with outages that spans over two ...
1
vote
1answer
91 views
DAX IF Contains formula
Hi I have a column which contains all windows based OS systems and which type they are so example Windows 7 Enterprise, Windows Server 2000, Windows Server 2003 Standard edition etc.
I need to filter ...
0
votes
1answer
95 views
Dax formula to calculate cumulative students
I am building first cube in SSAS 2012 Tabular modeling. I got one fact table contains following columns
TermDate StudentKey PaperKey marks CumulativeNoOfStudents
...
0
votes
1answer
181 views
Powerpivot DAX - How to get the “Second from the Last” date
In a dimension table of Period where there is a DateTime column, i need to get the "Second from the Last" date from that table. I need to use the result in a Filter expression which does not allow ...
0
votes
1answer
157 views
How to get second MIN value or cross column MIN value in PowerPivot?
I have an interesting table and i cant figure it out how to get 2nd minimum value or like something operation. Here is an example style of my table:
Column1 Column2 Column3
A A ...
0
votes
1answer
363 views
Calculating a Ratio using Column A & Column B - in Powerpivot/MDX/DAX, not in SQL
I have a query to pull clickthrough for a funnel, where if a user hit a page it records as "1", else NULL --
SELECT datestamp
,COUNT(visits) as Visits
,count([QE001]) as firstcount
...
1
vote
1answer
54 views
One to Many - Calculated Column
I am trying to teach myself the new Tabular model for SQL 2012 SSAS to handle some analytic reports that were previously handled in (slow) stored procedures.
I've made decent progress on most of it, ...
0
votes
1answer
90 views
MDX and DAX Measure produce non-exist value
I'm studying Tabular model in SQL Server 2012 Analysis service.
I made a cube like this.
First of all, I checked my data and the result as follows
(sorry, where statement is meaningless)
PCs on ...
0
votes
1answer
50 views
Exclusion criteria for calculated measure using date
I am working on a PowerPivot report that has the following tables/relationships:
FactTable:
Client
Issue
DateID
DimDate
DateID
Year
Quarter
Month
I wish to create a calculated measure that is ...
0
votes
1answer
381 views
Using RELATED function in DAX with USERELATIONSHIP
I am trying to pull in a field from another table in my BISM model using the "RELATED" function. Since there are many tables that have relationship to the People table, only ONE relationship is active ...
2
votes
1answer
196 views
Is there a way to compare multiple columns in PowerPivot using DAX?
Say I have a table in a PowerPivot that looks like this:
For each row, I want to find the minimum value across Columns 1, 2 and 3 and display that value in the column "MinColumn". The built-in MIN ...
1
vote
1answer
182 views
MDX equation convert to DAX equation
I'm studying SQL Server Tabular model.I'm struggle to transfer a MDX equation to DAX equation.
I want to show every month's PC count changing(incremental or decremental) rate using following ...
0
votes
0answers
124 views
RANKX function ranking per each attribute in pivot table
I'm trying to build a DAX calculation that will rank some attributes,
My table looks like this,
Name | Status | Attain | Attain Rank
The problem here is that when I use 2 attributes (Name and ...
1
vote
1answer
155 views
Sort chart legend in PowerView
I'm playing about with PowerView at the moment and have run into a slight issue. I've got a line chart (below) but would really like to sort the legend (Keyword) depending on the latest value of the ...
0
votes
0answers
46 views
counting the amount of rows in a table having the same values in one column as the output row dax powerpivot
can anybody help me by providing the dax expression for the following problem:
counting the amount of rows in a table having the same values in one column as the output row dax powerpivot
...
0
votes
1answer
114 views
How to change a attribute to a measure with DAX?
I have a lot of data in my database and I wish to display it as a Pivot Table using Power Pivot, however, some of my data is text (some flags, month names, names, last names, etc). Is there a way that ...
0
votes
0answers
219 views
Ranking and Filters on DAX
Currently I'm working on Ranking function on DAX to RANK my products by their sales (Total), this is what I have so far
RANKX(ALL('Query'[ProductID]),[Total],,,DENSE)
This works alright, the new ...
0
votes
1answer
104 views
Problems when using RANKX on PowerPivot
I'm trying to use the RANKX funcion to Rank some sales, my table looks like this
ProductID | ProductTotal |
I want to have a third column called ProductRank that will rank the The products depending ...
0
votes
1answer
201 views
DATEADD and missing dates
How do you reliably add 10 months to a date in the DAX formula for a PowerPivot calculated column?
My first attempt only works for dates that already exist in the EventDate column.
...
0
votes
1answer
155 views
Measures as attributes when consuming data from a Power Pivot
I created a Power Pivot workbook that has information from our store (the plan is to connect to this document and consume the data), basically is something like this.
CostumerID | ...
1
vote
0answers
157 views
Average Of Column Counting Duplicates Once - PowerPivot + DAX
I have a column in PowerPivot that I would like to get the average of. However I only want the rows included that are the only instance of a value or the first instance of a duplicate value in another ...
1
vote
1answer
592 views
How do I use the DAX function ParallelPeriod
The ParaellePeriod function allows for the comparison of values between points in time (how do sales compare to a year ago). I'm doing something wrong in my use of it, but have no idea what that thing ...
0
votes
1answer
229 views
Can we have MS Dynamic AX 2009 as a source in SSRS report?
Is this possible to have MS Dynamic AX 2009 as a source in SSRS report? How to do that
and we can use SQL query for accessing data for the same source ?
2
votes
1answer
1k views
PowerPivot - How to Filter Dimension to Get Value
I am working on a PowerPivot report that has the following tables/relationships:
FactTable:
SponsorId
OfficeId
Type
Color
Quantity
DimSponsor:
SponsorId
SponsorName
ProjectName
DimOffice:
...