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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
Anonymous
Not applicable

Return a list of value match the specific time period

Hi everyone,

 

I need your help!Robot Sad I want to get a list of value from a column that matches specific time period in the same table.

Below is my table, it contains the sales data since 01/01/2016.

 

 

I want to get a list of [EIDCodeBoutique], whoes [DateVentes] corresponds Yesterday;

And another list of [EIDCodeBoutique], whoes [DateVentes] is between 27/08/2018 and Today.

 

How can i achieve this? 

 

Best Regards,

Chen

 

 

1 ACCEPTED SOLUTION
Stachu
Community Champion
Community Champion

try this

Measure = 
VAR YesterdayOnly = FILTER('Table','Table'[DateVentes]=TODAY()-1)
VAR OtherTime = FILTER('Table','Table'[DateVentes]<TODAY() && 'Table'[DateVentes]>=DATE(2018,8,27))
RETURN
CONCATENATEX(DISTINCT(YesterdayOnly),'Table'[EIDCodeBoutique],",")

for your second measure replace YesterdayOnly in DISTINCT with OtherTime



Did I answer your question? Mark my post as a solution!
Thank you for the kudos 🙂

View solution in original post

2 REPLIES 2
v-jiascu-msft
Employee
Employee

Hi @Anonymous,

 

Could you please mark the proper answers as solutions?

 

Best Regards,

Dale

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Stachu
Community Champion
Community Champion

try this

Measure = 
VAR YesterdayOnly = FILTER('Table','Table'[DateVentes]=TODAY()-1)
VAR OtherTime = FILTER('Table','Table'[DateVentes]<TODAY() && 'Table'[DateVentes]>=DATE(2018,8,27))
RETURN
CONCATENATEX(DISTINCT(YesterdayOnly),'Table'[EIDCodeBoutique],",")

for your second measure replace YesterdayOnly in DISTINCT with OtherTime



Did I answer your question? Mark my post as a solution!
Thank you for the kudos 🙂

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.