quarter issue
3 TopicsTop 25 user document count in Numerator
Hi All, I am trying to find the top 25 users document count in Numerator. ex: 109969 count is Top 25 Users document count and 195098 is total user document count. 109969/195098= 56 % correct Now problem is when select Month then need the Top 25 users document in Numerator. Selected the Oct21 month then top 25 user count is 10039 and total count for that month 12429. 10039/12429 is required. like that for all months need. Please help on this query. Thanks in Advance.Solved411Views0likes2CommentsQuarterly Target to reset every quarter
I currently have my quarterly targer set at 6. For me to get a daily target value in the case I selected a particular date, it gives me what I want. However I need the target value to reset every quarter. Below is what I have as my solution Assuming I have a fixed expected quarterly target of 6. This is how I want the table broken down if there is a date selection with their respective quarters. Quarter Date Target Q1 2022 1/7/2022 0.47 Q1 2022 3/25/2022 5.67 Q1 2022 3/31/2022 6.00 Q2 2022 4/8/2022 0.67 However, When I have it selected as a quarter, I get the numbers compounded like this. I get 6.07 when I select just Q2 2022 since it is taking 1st day of Q2 2022 which is 4/1/2022. Quarter Target Q1 2022 6.00 Q2 2022 6.07 Expected Result: I want the target valies to reset every quarter so that it compounds to 6 by the end of every quarter. Quarter Target Q1 2022 6.00 Q2 2022 0.07 Thank you for your help.Solved842Views0likes2CommentsDate Table - DAX - CALENDAR() - ADDCOLUMNS() - Quarter Issue
Hi, I create a new Date table with DAX using the CALENDAR() function. Adding new columns, no problem. When I add a new "Quarter" colum into the table my table stops starting from Jan 1st and move to start from Jul 1st. I can't understand why. Any help greatly appreciated. First Variant (correct) Date = VAR MinDate = DATE(2016,1,1) VAR MaxDate = DATE(2021,12,31) RETURN ADDCOLUMNS ( CALENDAR(MinDate, MaxDate), "Calendar Year", "CY " & YEAR ([Date]) ) Result Second Variant (wrong) Date = VAR MinDate = DATE(2016,1,1) VAR MaxDate = DATE(2021,12,31) RETURN ADDCOLUMNS ( CALENDAR(MinDate, MaxDate), "Calendar Year", "CY " & YEAR ([Date]), "Calendar Quarter", "CQ " & QUARTER([Date]) ) Result Where I am wrong? ThanksSolved13KViews0likes4Comments