The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi, i have created a column that concatenates the assessment years that customers purchase and am trying to order the years from earliest year to latest year to help improve readability. I cannot seem to get the measure to work however? Any ideas on what I'm doing wrong?
CombinedAssessmentYears =
CONCATENATEX (
FILTER (
SUMMARIZE (
Finance_Sales,
Finance_Sales[CustomerName],
Finance_Sales[AcademicYear]
),
Finance_Sales[CustomerName] = EARLIER ( Customers[CustomerName] )
),
FORMAT ( Finance_Sales[AcademicYear], "YYYY" ),
", ")
Solved! Go to Solution.
Hi,
I am not sure how your Finance_Sales[AcademicYear] column looks like, but please try the below measure if it works.
CombinedAssessmentYears fix: =
CONCATENATEX (
FILTER (
SUMMARIZE (
Finance_Sales,
Finance_Sales[CustomerName],
Finance_Sales[AcademicYear]
),
Finance_Sales[CustomerName] = EARLIER ( Customers[CustomerName] )
),
FORMAT ( Finance_Sales[AcademicYear], "YYYY" ),
", ",
Finance_Sales[AcademicYear]
)
Hi,
I am not sure how your Finance_Sales[AcademicYear] column looks like, but please try the below measure if it works.
CombinedAssessmentYears fix: =
CONCATENATEX (
FILTER (
SUMMARIZE (
Finance_Sales,
Finance_Sales[CustomerName],
Finance_Sales[AcademicYear]
),
Finance_Sales[CustomerName] = EARLIER ( Customers[CustomerName] )
),
FORMAT ( Finance_Sales[AcademicYear], "YYYY" ),
", ",
Finance_Sales[AcademicYear]
)
User | Count |
---|---|
15 | |
8 | |
6 | |
6 | |
6 |
User | Count |
---|---|
23 | |
14 | |
13 | |
8 | |
8 |