Evaluate function in VBA

SanjayGMusafir

Well-known Member
Joined
Sep 7, 2018
Messages
1,515
Office Version
  1. 2024
Platform
  1. Windows
Hi Experts
Got stuck up at a place

I'm using following function in VBA to get amounts in last 2 hours

VBA Code:
x9 = Evaluate("SUMIFS(Visits[Fees],Visits[VDt],TODAY(),Visits[VTm],">="&NOW()-TODAY()-(2/24))")

The challenge is when VBA runs, it automatically adds space(s) before and after ">=" as " >= "

VBA Code:
x9 = Evaluate("SUMIFS(Visits[Fees],Visits[VDt],TODAY(),Visits[VTm]," >= "&NOW()-TODAY()-(2/24))")

Thus resulting in calculation error.

Please help or give a workaround.

Thanks in Advance
 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
Hi Sanjay,

When you convert the formula to Evaluate you need to double up on the quotes inside the formula.

VBA Code:
x9 = Evaluate("SUMIFS(Visits[Fees],Visits[VDt],TODAY(),Visits[VTm],"">="" &NOW()-TODAY()-(2/24))")
 
Upvote 0
Solution

Forum statistics

Threads
1,225,746
Messages
6,186,791
Members
453,371
Latest member
HMX180

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