The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi,
I am trying to show project status by quarter and have to fill in quarters where there is no change in activity.
I want the flow distribution column to be 3 (the total for each quarter)
but using the has one value function in measure 3, I get 4.
Flow distribution is defined as being if the project is active or not in that quarter and I had to fill this in for Q2.
Can someone please help as this is usually so easy so I am wondering why it doesn't work. Thanks
Solved! Go to Solution.
@Anonymous So, is this the total for the Flow Distribution? And the Flow Distribution is your Feature Epic Story Point Count measure? If this is the case, then it should be something like this:
Flow Distribution Total =
VAR __Table = SUMMARIZE( 'vwFiscalCalendar', [Fiscal Year Quarter], "__Value", [Feature Epic Story Point Count] )
VAR __Result = IF( HASONEVALUE( 'vwFiscalCalendar'[Fiscal Year Quarter]), [Feature Epic Story Point Count], SUMX( __Table, [__Value] ) )
RETURN
__Result
@Anonymous What is your measure formula?
Here is the data. I am trying to get a count of 3 (1 for each row). It's a bit involved as to how this is dervied because of the data in the gaps and every IssueKey needs a record for every quarter if not done.
THanks
@Anonymous So, is this the total for the Flow Distribution? And the Flow Distribution is your Feature Epic Story Point Count measure? If this is the case, then it should be something like this:
Flow Distribution Total =
VAR __Table = SUMMARIZE( 'vwFiscalCalendar', [Fiscal Year Quarter], "__Value", [Feature Epic Story Point Count] )
VAR __Result = IF( HASONEVALUE( 'vwFiscalCalendar'[Fiscal Year Quarter]), [Feature Epic Story Point Count], SUMX( __Table, [__Value] ) )
RETURN
__Result
User | Count |
---|---|
10 | |
9 | |
6 | |
6 | |
5 |
User | Count |
---|---|
21 | |
14 | |
14 | |
9 | |
7 |