Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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 )
)