Compiling Error Syntax Error

Pookiemeister

Well-known Member
Joined
Jan 6, 2012
Messages
626
Office Version
  1. 365
  2. 2010
Platform
  1. Windows
VBA Code:
Private Sub UserForm_Activate()

    Worksheets("Work Orders").Activate
    
'**********************************************************************************************************************************
    'Totals ALL Processing Work Orders
    Me.Label15.Caption = Application.WorksheetFunction.CountIf(Range("L:L"), "TPM Processing Technician (P4TPMPRO)")
    
    'Totals Closed Processing Work Orders
     me.Label31.Caption = application.WorksheetFunction.CountA(choosecols(filter(Work_Orders,(work_orders[main work center]=G139)*(Work_Orders[Order Status]="Released"),""),18))

End Sub

This error occurs on this line of code:
VBA Code:
me.Label31.Caption = application.WorksheetFunction.CountA(choosecols(filter(Work_Orders,(work_orders[main work center]=G139)*(Work_Orders[Order Status]="Released"),""),18))

This code actually works inside a spreadsheet cell but not in VBA. "Work_Orders" is the name of the table. Thanks
VBA Code:
=CountA(choosecols(filter(Work_Orders,(work_orders[main work center]=G139)*(Work_Orders[Order Status]="Released"),""),18))
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
So if what I just read was correct on another sites vba forum, choosecols does not work in vba, yet, but it was suggested to use index & match instead. So is there a way to convert the code above to work with index and match. Thank you.
 
Upvote 0
I don't know if ChooseCols works in VBA yet, but you have a larger problem. If you use WorksheetFunction.xxx, then you have to code it using vba syntax, NOT sheet formula syntax. You just put the interior part of the formula inside the WorksheetFunction.CountA function, but the entire formula needs to be converted to VBA syntax.

This is possible, but instead, I think it would be easier to use the Evaluate function in VBA, which allows you to use formula syntax. Try:

VBA Code:
me.Label31.Caption = Evaluate("=COUNTA(FILTER(Work_Orders[Col18],(Work_Orders[Main Work Center]=G139)*(Work_Orders[Order Status]=""Released""),""""))")

Note the doubled double quotes. Also I removed the CHOOSECOLS with the expedient of using the column name in the FILTER, but you should be able to use CHOOSECOLS if you want.
 
Upvote 0
I don't know if ChooseCols works in VBA yet, but you have a larger problem. If you use WorksheetFunction.xxx, then you have to code it using vba syntax, NOT sheet formula syntax. You just put the interior part of the formula inside the WorksheetFunction.CountA function, but the entire formula needs to be converted to VBA syntax.

This is possible, but instead, I think it would be easier to use the Evaluate function in VBA, which allows you to use formula syntax. Try:

VBA Code:
me.Label31.Caption = Evaluate("=COUNTA(FILTER(Work_Orders[Col18],(Work_Orders[Main Work Center]=G139)*(Work_Orders[Order Status]=""Released""),""""))")

Note the doubled double quotes. Also I removed the CHOOSECOLS with the expedient of using the column name in the FILTER, but you should be able to use CHOOSECOLS if you want.

I don't know if ChooseCols works in VBA yet, but you have a larger problem. If you use WorksheetFunction.xxx, then you have to code it using vba syntax, NOT sheet formula syntax. You just put the interior part of the formula inside the WorksheetFunction.CountA function, but the entire formula needs to be converted to VBA syntax.

This is possible, but instead, I think it would be easier to use the Evaluate function in VBA, which allows you to use formula syntax. Try:

VBA Code:
me.Label31.Caption = Evaluate("=COUNTA(FILTER(Work_Orders[Col18],(Work_Orders[Main Work Center]=G139)*(Work_Orders[Order Status]=""Released""),""""))")

Note the doubled double quotes. Also I removed the CHOOSECOLS with the expedient of using the column name in the FILTER, but you should be able to use CHOOSECOLS if you want.
 
Upvote 0
VBA Code:
Me.Label31.Caption = Evaluate("=COUNTA(FILTER(Work_Orders[Col18],(Work_Orders[Main Work Center]=G139)*(Work_Orders[Order Status]=""Released""),""""))")
produces a runtime error 13: Type mismatch.

Thank you for the quick reponse
 
Upvote 0
G139 in the original code is a range reference. It is not in a column per say, It is referencing the value in the range G139. If the code above worked I then would of moved on to reuse that same code but reference the value in G140 and so on. Thank you.
 
Upvote 0
G139 in the original code is a range reference. It is not in a column per say, It is referencing the value in the range G139. If the code above worked I then would of moved on to reuse that same code but reference the value in G140 and so on. Thank you.
You can adjust that range dynamically. And while I'm thinking about it, you should probably add a sheet reference to G139, in case you run the macro when G139 is not on the active sheet. So something like:

VBA Code:
For ParameterRow = 139 to 145
    Me.Label31.Caption = Evaluate("=COUNTA(FILTER(Work_Orders[Col18],(Work_Orders[Main Work Center]='Data Sheet'!G" & ParameterRow & ")*(Work_Orders[Order Status]=""Released""),""""))")
Next ParameterRow
 
Upvote 0

Forum statistics

Threads
1,223,713
Messages
6,174,041
Members
452,542
Latest member
Bricklin

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