Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Rakesh404
Frequent Visitor

If date is in between two dates if condition not giving proper results.

Rakesh404_0-1710806355029.png

In the image left side is my table data and the right side i am expecting to display the data when my date is in between start date and end date, 

If my date is > Startdate && my date <= ENd date  it has to give result as 1 else 0 .

as shown in the image matrix date.

Can any on ehlp me how do i do that.

 

5 REPLIES 5
Rakesh404
Frequent Visitor

Rakesh404_1-1711216546905.png

If you see this image, i could able to concateneate dates between start and end dates, the dates are perfect but i am unable to fill with 1's when date matching 

Rakesh404
Frequent Visitor

First Step

First_Step =
var _min=MIN(tblTeeCards[Tee_Start])
var _max=MIN('tblTeeCards'[Tee_End])
VAR Dates= MIN('Table 2'[Column])
VAR Concat=
CONCATENATEX(
    FILTER(ALL('Table 2'),
    'Table 2'[Date]>=_min&&'Table 2'[Date]<=_max),'Table 2'[Date],"-"
    )
RETURN
   Concat
 
Second Step
Second_Step =

var _step2=
CONCATENATEX(
    FILTER(ALL('tblTeeCards'),
    'tblTeeCards'[Owning_Panel]=MAX('tblTeeCards'[Owning_Panel])),[First_Step],"-"
    )
return
IF(
CONTAINSSTRING(
    _step2,MAX('Table 2'[Column]))=TRUE(),1,0)
Rakesh404
Frequent Visitor

Rakesh404_0-1711216314885.png

I am unable to fill with 1's in between start date and end date.I think i am missing something.I am unable to attach Pbi file here. Please help me to resolve this.

 

v-yangliu-msft
Community Support
Community Support

Hi  @Rakesh404 ,

 

Here are the steps you can follow:

1. Create calculated table.

Table 2 =
CALENDAR(
    DATE(2024,2,1),
    DATE(2024,2,20))

vyangliumsft_0-1710823717302.png

2. Create measure.

Step1 =
var _min=
MINX(FILTER(ALL('Table'),'Table'[TestNO]=MAX('Table'[TestNO])&&'Table'[ProjectNo]=MAX('Table'[ProjectNo])),[StartDate])
var _max=
MAXX(FILTER(ALL('Table'),'Table'[TestNO]=MAX('Table'[TestNO])&&'Table'[ProjectNo]=MAX('Table'[ProjectNo])),[End Date])
var _mingroup=
MINX(FILTER(ALL('Table'),'Table'[TestNO]=MAX('Table'[TestNO])),[StartDate])
var _maxgroup=
MAXX(FILTER(ALL('Table'),'Table'[TestNO]=MAX('Table'[TestNO])),[End Date])
return
CONCATENATEX(
    FILTER(ALL('Table 2'),
    'Table 2'[Date]>=_min&&'Table 2'[Date]<=_max),'Table 2'[Date],"-"
    )
Step2 =
var _step2=
CONCATENATEX(
    FILTER(ALL('Table'),
    'Table'[TestNO]=MAX('Table'[TestNO])),[Step1],"-"
    )
return
IF(
CONTAINSSTRING(
    _step2,MAX('Table 2'[Date]))=TRUE(),1,0)

3. Result:

Here's a discovery that needs to be explained to you, according to your rules, [TestNo] also belongs to 1 on 2/6/2024

vyangliumsft_1-1710823717303.png

 

 

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

Thank you very very much. 👏

 

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors