compare table dates to measure date

ajm

Well-known Member
Joined
Feb 5, 2003
Messages
2,053
Office Version
  1. 365
Platform
  1. Windows
how does one compare the dates in a table to a sliver date stored as a measure?
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
surprisingly good answer came from chatGPT. i am not wanting to be, but am, impressed.

with my slicer, which displayed dates from a date fact table, and my table (Forward Plan) which holds project date incl start and finish dates. Chat GPT came up with the basics and i copied to create the working measure.

Code:
Active Projects = 
VAR SelectedStartDate = MIN('ExtXLFileDates'[Date])
VAR SelectedEndDate = MAX('ExtXLFileDates'[Date])
RETURN
CALCULATE(
    DISTINCTCOUNT('ForwardPlan'[Description]),
    FILTER(
        'ForwardPlan',
        ('ForwardPlan'[Activity Start] <= SelectedEndDate && ('ForwardPlan'[Activity End] >= SelectedStartDate))
       ||('ForwardPlan'[Activity Start] >= SelectedEndDate && ('ForwardPlan'[Activity End] <= SelectedStartDate))
   ||('ForwardPlan'[Activity Start] < SelectedStartDate && 'ForwardPlan'[Activity End] <= SelectedEndDate && ('ForwardPlan'[Activity End] >= SelectedStartDate)) 
    ||('ForwardPlan'[Activity Start] > SelectedStartDate && 'ForwardPlan'[Activity Start] <= SelectedEndDate && ('ForwardPlan'[Activity End] >= SelectedEndDate)) 
    ))
 
Upvote 0
Solution

Forum statistics

Threads
1,223,911
Messages
6,175,333
Members
452,636
Latest member
laura12345

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top