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 All - I have table with Pipeline Information and want to convert calculated column into measure. Please Provide your suggestions.
Table:PipelineRuns : this table contains pipeline information and duration for each run based on start and finishdate.
Measure: Calculate PipelineDurationCalculated column to measure.
Currenlty, I'm able to achieve using calcuated Column but I want to connvert it into measure
Example:
Solved! Go to Solution.
Hi,
I am not sure how your semantic model looks like, but please check the below picture and the attached pbix file if it suits your requirement.
MaxPipelineDuration Measure: =
MAXX (
PipelineRuns,
DATEDIFF ( PipelineRuns[StartDate], 'PipelineRuns'[FinishedDate], DAY )
)
Hi,
I am not sure how your semantic model looks like, but please check the below picture and the attached pbix file if it suits your requirement.
MaxPipelineDuration Measure: =
MAXX (
PipelineRuns,
DATEDIFF ( PipelineRuns[StartDate], 'PipelineRuns'[FinishedDate], DAY )
)
User | Count |
---|---|
24 | |
10 | |
8 | |
7 | |
6 |
User | Count |
---|---|
32 | |
12 | |
10 | |
10 | |
9 |