A macro is a rule or pattern that specifies how a certain input sequence (often a sequence of characters) should be mapped to an output sequence (also often a sequence of characters) according to a defined procedure. The mapping process that instantiates (transforms) a macro into a specific output ...
0
votes
0answers
24 views
Automate Source Data in Excel
I have two sheets in my excel file. One contains a pivot chart("pivot") while the other one contains data("Data"). What I want is after filling up a column from "Data Sheet", the pivot chart will be ...
0
votes
0answers
12 views
vba macro: Which table my cursor is in?
Writing a macro I found out that I need to skip the table contents and place my cursor right after that, for this I am using a code as
Selection.Tables(cnt).Select
Selection.Collapse ...
0
votes
1answer
29 views
where will I put the codes when button is clicked?
i've created a macro to create a button when the sheet is activated. then i called it using the codes below: But everytime i go to different worksheet then back again to the sheet containing this ...
1
vote
1answer
22 views
do while loop based on a value available in cell (find) in vba
Hi i am writing a code in vb to check a particular value in a sheet, if the value is not available then it should go back to another sheet to take new value to find, if the value is found i have to do ...
-1
votes
1answer
31 views
Macro code need advise
My presentation is like this: There are around 500 slides in the presentation, the first slide is an introduction, second slide is for instructions with the action button for the Start_time macro - ...
1
vote
2answers
28 views
execute macro when cell value changes due to another macro
I have a sheet with two buttons. One button places a value in a cell (E2) and the other button counts that value (in E2) down by 1 every time it is pushed. I want the value in E2 cell to dictate the ...
0
votes
2answers
889 views
Open Excel Workbook with a Macro error to notify VSTO
I am trying to open an Excel file from my C# code.
workBook = workBooks.Open(fileName, //filename
0, //updatelinks
...
0
votes
1answer
31 views
Location of .txt file within an .xls
Can anybody with Excel knowledge help me? The nomenclature surrounding excel and its macros means I've hit a brick wall investigating this by myself.
In the spreadsheet available here ...
0
votes
1answer
40 views
Copy/Paste Text in Excel using Applescript
My Applescript is performing the calculation I've requested, but I'm trying to get it to paste a text value from one of the workbooks... and it's not working.
Is there something I need to do in order ...
1
vote
1answer
38 views
Qt name collision, but no_keywords not an option
I have a dilemma. In a program I'm writing using Qt, I use a (non-Qt) library that uses a Qt keyword in its headers as a name (the library being pf_ring to be precise, and the name "slots") and so I ...
2
votes
3answers
175 views
Templates from C++ in C
I am trying to recreate some classes from the C++ standard library in C. For example, the std::pair class.
To emulate templates, I used macros of course. Here is an example of how it looks like:
...
0
votes
1answer
56 views
BITCOUNT macro in C
how can I count how many zero bits are in variable?
I must use macro like thist BITCOUNT(x,c) where x is my variable and c is count of zero bits in x
example: X = 00101001 and C = 5
1
vote
2answers
24 views
Visual basic macro- changing the colour of specific text
Im very new to visual basic and macros. what i have been trying to do is create a macro that will look through the whole document and check to see if any of the font is red;if it is red then i want to ...
2
votes
2answers
71 views
GoTo <Line number> in VBA
From the VBA help file:
GoTo Statement
Branches unconditionally to a specified line within a procedure.
Syntax
GoTo _line_
The required line argument can be any line label or ...
2
votes
2answers
48 views
How to enhance this variable-dumping debug macro to be variadic?
First working code:
#include <iostream>
// NOTE: requires compiler which has __PRETTY_FUNCTION__, like gcc or clang
#define DUMP(v) std::cerr << __PRETTY_FUNCTION__ << ':' << ...
-2
votes
0answers
19 views
Excel giving an item from a list to multiple users from 1 sheet
I'm hoping someone can help.
I've got a unique problem and I've looked but can't find an answer.
i have upward of 200 users and I need them all to work from a list in order and update the starting ...
0
votes
0answers
12 views
snprintf issue when pass a macro
define a macro somewhere
#define IDENTIFIER "identifier"
passing this macro into snprint()
char buf[SIZE] = {0};
if (snprintf(buf, sizeof(buf), "%08X_%08X_%s.zip", i, j, IDENTIFIER) ...
0
votes
0answers
8 views
Query or Function list for Polarion macros [closed]
I'm looking into creating some Polarion macros, but I'm sorta new to how these macros work to query work items. Where could I find a complete list of the types of functions that it uses, and a ...
1
vote
1answer
18 views
Solaris and Preprocessor Macros
Would someone post the results of cpp -dM < /dev/null from a Solaris 10 or above system?
I'm having trouble locating what preprocessor macros are typically defined. Solaris documentation does not ...
5
votes
2answers
124 views
Derived Class with no overhead using templates?
I am trying to accomplish the following:
Object.
Debug version of object with extra functionality in functions for tracing purposes.
Now, I currently have a compile-time solution using macros, ...
1
vote
1answer
16 views
In Excel, how to scan for Duplicate in Column A. Place info in another sheet
Here is my issue. I have a WorkSheet Named Cost Data
In Column A which is named HEITEM
I have for example
7658798
7513807
789456
7513807
Note:7513807 is a duplicate
In Columns B - AG I have data ...
0
votes
2answers
92 views
Writing Excel VBA code/macro to populate Powerpoint Text boxes with Excel cell values
I'm attempting to take the value in Excel cells and value PowerPoint text boxes. I don't want to link a PowerPoint table to an Excel spreadsheet because the spreadsheet is constantly changing..values ...
-4
votes
1answer
46 views
Which of the following implementations is faster?
What I'm trying to do is fill the values of a specific matrix using unknown variables.
Here's the first implementation:
#define PHI(I,J,K) phi[xlength*ylength*(I)+xlength*(J)+(K)] //Macro that calls ...
0
votes
1answer
16 views
Type mismatch when tring to extract the date by calling a function in macro
I am using the below code. I am getting the "Type Mismatch : Error 13" when i am trying to execute it. I tried by putting all variable type (long, double, date, string) but non of them worked out.
...
0
votes
2answers
63 views
How to print macro name in c or c++
How to print macro name in c or c++
eg:
#define APINAME abc
#define PRINTAPI(x) printf("x")
I want to print PRINTAPI(APINAME) and not "abc"
2
votes
3answers
95 views
Call a C preprocessor macro multiple times (through a variable)
I'd like to clean up my assembly code and povide a way to call "NOP" multiple times through a macro:
#define NOP() asm(" nop")
#define NOP_N( N ) \
NOP(); \
NOP(); \
.... call NOP() N ...
19
votes
16answers
10k views
Python Macros: Use Cases?
If Python had a macro facility similar to Lisp/Scheme (something like MetaPython), how would you use it?
If you are a Lisp/Scheme programmer, what sorts of things do you use macros for (other than ...
0
votes
0answers
25 views
Using ListBox to upload data via macro
I'm currently trying to improve the process of adding a new invoice to an invoice database and attempting to achieve this via a Listbox written in VBA. So far I can get the Listbox and prompts to ...
2
votes
1answer
29 views
1004 error when trying to set name on xls worksheet
I'm trying to create worksheets with name taken from "sheet1" cells, but I 'm always getting 1004 error when executing Worksheets(Worksheets.Count).name = companyName
I tried setting the sheets name ...
0
votes
2answers
54 views
Function like macros returning a value
Recently came across following examples which returns a register read __ret but without a return statement
#define READWORD(offset) ({ \
unsigned short __ret=0;\
...
1
vote
4answers
54 views
Vim - Find pattern on currently line ONLY
I'm wondering if there is a way to find a pattern, but restrict it to the current line. Basically, the equivalent of /PATTERN but restricted to the current line, rather than the entire document.
I've ...
1
vote
0answers
32 views
excel sheet becoming slow and hangs after a code in macro
i have recently added the below piece of code in my macro to sort/filter a sheet and find a particular value and apply some formating based on the value found cell
Sheets("Extract").Select
...
-1
votes
2answers
28 views
How to fix the Merge macro in my code?
I have a code that sorts and creates different ranged groups of values. I have a column with Metric Tons Per Hour in it that I sort and it groups any values from 6-8 together and creates a new column ...
0
votes
0answers
25 views
VBA on incoming email in Outlook and appending to subject line
Hopefully this is a fairly easy one, here's what I'm trying to do:
I work for an exam marking board, and we have examiners who email us directly with different queries through the day. We are ...
-2
votes
1answer
20 views
how to convert macro enabled excel to normal one?
My requirement is to enter some values in spreadsheet which has some validations which are done using macros. After saving the document i have to give this as input to other application which accepts ...
1
vote
1answer
306 views
can you limit the number of items in a recently-updated macro in confluence 2.9?
i see in confluence 2.10, there is a max and maxresults parameter but i dont see these parameters in 2.9.1 or below. Is there anyway to limit the results in these versions ?
0
votes
1answer
23 views
Macro to use multiple IF statements to copy and paste to dif places of a dif worksheet
This particular macro, it's hard to accomplish what I want by taking different parts of different codes around the net, so I'm here for help!
Basically, I teach swimming and I want to track progress ...
5
votes
5answers
5k views
how to undefine a define at commandline using gcc
How do I at compiletime undefine a compiler macro using gcc. I tried some compile args to gcc like -D but I cant get to see the "not defined" message.
Thanks
#include <iostream>
#define MYDEF
...
0
votes
3answers
29 views
Excel crashes while trying to run a loop to delete rows without specific words
So having a nightmare, the syntax and all is correct but the logic seems to be flawed :S
This code is meant to delete rows that do not contain the words
Facility
and
Government
From all cells ...
2
votes
2answers
60 views
Macro to group rows by a range of values in a column?
I have a spreadsheet that has a column with ton per hour numbers that are 6, 7, 8, 10, 11, 12, 12.5, 13, 14.5, 15, 18, 20, 21, 24, 25, 27, 28, 30, 33, 35, 38, 40, 43, 45, 47, 48. I need a macro that ...
0
votes
1answer
23 views
Macro That Takes MS word Files in a folder And Runs Them Through Another Macro
I need to make a macro that takes MS word files in a specific folder and
runs them through another macro. i already have the 2nd macro
done and it is working perfectly i just need to know how to make ...
0
votes
1answer
51 views
Excel Workbook open macro reopens closed workbook
I do the following as a macro
Open a list of files
copy some values
Close them
After that when I exit and reopen the file that contains the macro, it also opens the files which I previously ...
2
votes
3answers
94 views
how to convert string constant to preprocessing token in C
I want to convert string constant to preprocessing token using macro.
Example:
// get the first character of marco argument to postfix of new data type.
#define TYPE(typename) Prefix ## ...
3
votes
1answer
90 views
Send an Outlook email from Excel putting formatted text from a hidden worksheet into the body of the email
I have very little experience of VBA or macros as will, no doubt, become self-evident. I have got to the point that I can create the email perfectly if I am in the worksheet that holds all the ...
0
votes
0answers
8 views
Combine 2 field information to 1 field with VBA Access 2007
I use access 2007
I have 1 table wich is called 'Planning'
In this table is a field called 'history'. In this field (Memofield) I keep track of all things that are happened to 1 item.
I also have a ...
2
votes
1answer
42 views
Racket Macro to auto-define functions given a list
I want to auto-generate a bunch of test functions from a list. The advantage being I can change the list (e.g. by reading in a CSV data table) and the program will auto-generate different tests on ...
0
votes
0answers
40 views
Mutt macros: How to set and then use a variable in one macro?
I'm trying to write a small mutt macro that will set a variable, and then re-use that variable in the same macro.
What I'm really trying to do is compose a message and sub in the To: address (which ...
-3
votes
1answer
20 views
All the errors are coming when I am trying to call this customized macro [closed]
define ERROR_CHECK_SERVER(x)\
({\
if (globalError)
{\
MM_MSG_PRIO(MM_GENERAL, MM_PRIO_ERROR, x);\
stop = true;\
break;\
}\
})
code @ line no.
131 status = ...
-1
votes
2answers
45 views
excel VBA trying to get my macro to run faster [closed]
I am trying to get my macro to run a bit faster and i was wondering which way is the fastest:
1)
Set cell2 = Range("F" & CurrentRow)
Set Columns = Range(cell2, cell2.Offset(0, LastColumn - 6))
i ...
0
votes
1answer
49 views
Macro causing linker errors
I have a bunch of macros defined in a library for example called MY_LIB.so I built and compiled it successfully. Example:
#define DOSOMETHING() function()
#define ANOTHER() function2()
When I use ...



