@BrianJ Thank you , but I i wrongly interpreted my question, I would like to achieve it in the Excel Power Query Dax formula not in Power BI , selectvalue is not avaibale in PQ in the Excel. I can easily write the formula in the M-Code but I was suprise this morning that I was not able to reflect my figure from Power BI to PQ in the Excel as Dax
Since a date is a single value DAX is unable to deduct it end fate from the start date, therefore, we always need to use a formula that will convert a date into a single value? Like Max/ MIn in PQ Excel and select value in BI?
Exactly right. If we were just to put Start Date or End Date by themselves into the DAX formula, that would be what’s referred to as a “naked column reference”, which is not allowed in DAX measures because it provides insufficient information to resolve which value of the column is to be used in the calculation – thus we need an additional function, such as Max, Min, etc. to resolve that ambiguity.
Note however, if we did this is a calculated column rather than a measure, we would not need MAX, because the calculated column by nature provides the row context that resolves the naked column ambiguity.