How can I copy a contact from one list to another in Active Campaign - activecampaign

I need to copy an existing contact from master list to another list. I tried using copy & paste your contacts option but it failed to copy. Thank you for any help

Please go to the master list and select the contact(s) you want to copy. Click on 'Edit' option and then select the option 'Add to List' and then choose the list you want to copy the contact to.

Related

Cannot select item from Drop down selenium WITHOUT select

I am new to Python and trying to figure out how to call an item from the drop down list. I managed to make it visible with this code.
price_point = driver.find_elements_by_class_name("chosen-single")
price_point[0].click()
I cannot use Select.
The list is open and visible now But I am not able to click the items inside the list. Any ideas?
Your help is much appreciate!
Access the list item directly and click on it. Here is the sample
driver.find_element_by_xpath("//select[#class='chosen-single']//option[normalize-space(.)='here goes your list item text']").click()
if you have more than one list boxes with class "chosen-single" then use the below to select the item from first list box.
driver.find_element_by_xpath("(//select[#class='chosen-single'])[1]//option[normalize-space(.)='here goes your list item text']").click()

Automation Anywhere. How do I pick a value from dropdown

Automation Anywhere. How do I pick a value from dropdown. I tried 'set text' from a copied variable. Its very slow, and also doesnt seem to be the right away. I would want to pick a value from the dropdown. Any idea how this can be done ? Thank you
You can use Object Cloning for this.
The process will be like:
Select object cloning and select the window you want to clone.
Capture the object to which you want to select from the drop-down.
Object cloning intelligence will automatically treat this as Drop down, and an extra option like "select Item by text" will appear in the action list. Select that option.
It will only suggest the all the drop down options. Select the required option you want.
Press Save.
That's it.
Thanks
You can do it using 'Manage Windows Controls' AA Command ( in this command make sure you check available checkbox for Capture a control of specific type [select - Drop Down] in next text box) and capture the value from pick list.

Navigation Buttons within Other Subs

I have built a macro that does the following: My first sheet contains a list of names. Every time I run the macro, a name is added to the list and a new sheet is created. I would now like to, in the same macro, be able to create a button next to each new name every time I add a name that will allow me to navigate to the new sheet since I will be adding many of these. Do you have a suggestion for how I should do this?

Populating options for drop down list

I have a list that I will have users enter data into, each user needs to select their own location. First I created a drop down field with all the options. The column can be set to force unique values, but this doesnt check until the end when the user goes to save.
Is there a way to check if the users selection is already entered, immediately when the option is selected? (without having to hit save)
OR
Another option I tried was:
Create a separate list with two columns: name and saved. Call it Location_List
Create a view that displays all where saved = no on Location_list
Populate the options on the mainList from a look up the the Location_List. This works.
Add a workflow action to mainList that updates saved = yes on the Location_List. This part doesn't work. Does sharepoint allow this though?
Is there an easier way to accomplish this?
My second option worked, had simply forgotten to update the workflow setting to "Start automatically when item is created" for it to run accordingly.

stored proc from excel with parameters

If I create a stored proc in sql that has a parameter, can I run that from Excel?
Without using VBA you can use this method. This assumes your stored procedure returns a result set. It also does not make the parameter pulled from a workbook. I think you'd have to use VBA to do that.
Under the 'Connections' section click 'Connections'
Click Add
Click 'Browse for More...'
Click 'New Source...'
Select 'Microsoft SQL Server'
Click Next
Type in the login credentials and click ok.
Select your database
Uncheck 'Connect to a specific table'
Click Finish.
When asked to select a table just click ok.
This should bring you back to the Workbook Connections screen with your new connection added.
Select it and click 'Properties'
Go to the 'Definition' tab.
Set the Command Type to SQL
set the Command text to the SQL you want to run (i.e. "exec spStoredProc 'value'")
Set a new name for your connection
Click ok.
if told that you are severing a connection just agree that, that is okay.
Click 'Close' on your 'Workbook Connections'
Click 'Existing Connections' under the 'Get External Data' section
Select your connection you just made under the 'Connections in this Workbook' section.
Click Open
Set your Import Data options if you want or just click ok
You should now see the result set from the SQL Query in your excel worksheet.
This data can be refreshed from the data that is in the database by going to the data tab and clicking 'Refresh All'
Yes
A standard ADO call from VBA. Or use the Tools..Data thing.
Sure, you can use VBA.
Or you can do it like this: http://blogs.msdn.com/b/excel/archive/2010/06/08/running-a-sql-stored-procedure-from-excel-no-vba.aspx
Here's another nice article on it.
http://www.itjungle.com/mgo/mgo102203-story01.html
I have been working to find a solution to this for a while now and got the best results from following the steps in this article.
http://codebyjoshua.blogspot.com/2012/01/get-data-from-sql-server-stored.html