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

Get inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.

Reply
schoden
Post Partisan
Post Partisan

multiple values was supplied for single value error

Hi All, 

 

I couldnt get a better solution to return multiple values.

I want to return all of  employee names , filter date of join as this month 

 

New measure= CALCULATE(VALUES [emp name], MONTH(date)= MOnth(Today()))

 

error : multiple values supplied error.

I tried using MAX, FIRSTNONBLANK, SELECTEDVALUE = all same error. 

 

 

1 ACCEPTED SOLUTION
v-jayw-msft
Community Support
Community Support

Hi @schoden ,

 

Do you want a visual or a table?

If you want a visual, please create a measure like below and add it to visual filter.

Measure = IF(MONTH(SELECTEDVALUE('Table'[date]))=MONTH(TODAY()),1,0)

2.PNG

If you want a tbale, please check the formula below.

Table 2 = FILTER('Table',MONTH('Table'[date])=MONTH(TODAY()))

3.PNG

 

Best Regards,

Jay

 

Community Support Team _ Jay Wang

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

 

Community Support Team _ Jay
If this post helps, then please consider Accept it as the solution
to help the other members find it.

View solution in original post

7 REPLIES 7
v-jayw-msft
Community Support
Community Support

Hi @schoden ,

 

Do you want a visual or a table?

If you want a visual, please create a measure like below and add it to visual filter.

Measure = IF(MONTH(SELECTEDVALUE('Table'[date]))=MONTH(TODAY()),1,0)

2.PNG

If you want a tbale, please check the formula below.

Table 2 = FILTER('Table',MONTH('Table'[date])=MONTH(TODAY()))

3.PNG

 

Best Regards,

Jay

 

Community Support Team _ Jay Wang

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

 

Community Support Team _ Jay
If this post helps, then please consider Accept it as the solution
to help the other members find it.

@v-jayw-msft Thanks for your effort:D it solved.    

 

I have another problem :  I want to customise week number from any start date for example;

Date_start  = 29/09/2019,  30/09/2019, 5/10/2019 and so on 

   WeekNum=1,1 ,2  and so on 

 

Please share me your idea . Thanks 

 

 

amitchandak
Super User
Super User

@schoden , You have to use it like this

New measure= CALCULATE(max [emp name], MONTH(date)= MOnth(Today()))

New measure= CALCULATE(count [emp name], MONTH(date)= MOnth(Today()))

 

or use firstnonblank on emp name.

 

If you trying to filter emp name. Use this measure along with emp name in a visual, it will filter it in the visual

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

@amitchandak  Hi 

 

Yes I tried all , gives same error 😞

@schoden  ,

 

Could you please share some dummy data to test your scenario if possible.

Don't forget to give thumbs up and accept this as a solution if it helped you!!!

Please take a quick glance at newly created dashboards : Restaurant Management Dashboard , HR Analytics Report , Hotel Management Report, Sales Analysis Report , Fortune 500 Companies Analysis , Revenue Tracking Dashboard

@Tahreem24sorry I dont have dummy data 

@schoden , Please make sure all table column are mentioned correctly

CALCULATE(count(Table [emp name]), MONTH(Table[date])= MOnth(Today()))

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code FABINSIDER for a $400 discount!

FebPBI_Carousel

Power BI Monthly Update - February 2025

Check out the February 2025 Power BI update to learn about new features.

March2025 Carousel

Fabric Community Update - March 2025

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

Top Solution Authors