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
Uhan1101
Frequent Visitor

Add selected number of days to a date - using HASONEVALUE

Hi!

I've trying to make a slicer with a numbers of days (1 - 10) which I want to add to a date column, so the user can see the sum for the day + 1-10 days. 

The number of days I've just added in a not related table, so I was thinking of using HASONEVALUE, but it's not working.

 

The formel I'm trying to use is;

Add_days = if(HASONEVALUE('Dage'[Antal dage]);VALUES(Dage[Antal dage])+VALUES(test_kpi1_0301[LEVERINGS_DATO]))

 

I'm using direct query to my data

 

Can anybody help me

2 ACCEPTED SOLUTIONS
amitchandak
Super User
Super User

@Uhan1101 , If you try add that to new column that is not possible. In case of measure you can try

 

if(Isfiltered('Dage'[Antal dage]) && HASONEVALUE('Dage'[Antal dage]), Max(Table[Date])+ Selectedvalues('Dage'[Antal dage]) , Max(Table[Date]))

 

 

You can use one of the two as per need isfiltered or hasonevalue

https://powerpivotpro.com/2013/03/hasonevalue-vs-isfiltered-vs-hasonefilter/

View solution in original post

v-yangliu-msft
Community Support
Community Support

Hi  @Uhan1101 ,

I created some data:

vyangliumsft_0-1652768923751.png

Here are the steps you can follow:

1. Select Modeling – New Parameter.

vyangliumsft_1-1652768923754.png

2. Create measure.

Measure =
MAX('Table'[Date]) + [Slicer_Day Value]

3. Result:

vyangliumsft_2-1652768923756.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

View solution in original post

2 REPLIES 2
v-yangliu-msft
Community Support
Community Support

Hi  @Uhan1101 ,

I created some data:

vyangliumsft_0-1652768923751.png

Here are the steps you can follow:

1. Select Modeling – New Parameter.

vyangliumsft_1-1652768923754.png

2. Create measure.

Measure =
MAX('Table'[Date]) + [Slicer_Day Value]

3. Result:

vyangliumsft_2-1652768923756.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

amitchandak
Super User
Super User

@Uhan1101 , If you try add that to new column that is not possible. In case of measure you can try

 

if(Isfiltered('Dage'[Antal dage]) && HASONEVALUE('Dage'[Antal dage]), Max(Table[Date])+ Selectedvalues('Dage'[Antal dage]) , Max(Table[Date]))

 

 

You can use one of the two as per need isfiltered or hasonevalue

https://powerpivotpro.com/2013/03/hasonevalue-vs-isfiltered-vs-hasonefilter/

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