0
votes
0answers
52 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
1answer
68 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
1answer
218 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
146 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
97 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
184 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
165 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
372 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 ...
0
votes
1answer
51 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 ...
2
votes
1answer
197 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 ...
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
159 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
115 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
221 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
105 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
156 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
158 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
600 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 ...
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: ...