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 ...
1
vote
1answer
57 views
How to use an If macro to delete columns if check box for that column isn't selected?
I am working with a spreadsheet with 11 different system sizes on it with each system size representing a column. I will need to use this to be able to compare different system sizes but need to be ...
2
votes
3answers
60 views
Looping construct in a C99 macro
I want to generate an array initializer with arbitrary logic that unfortunately requires some looping.
#define RANDOM_ARRAY(n) \
...
double array[] = RANDOM_ARRAY(10);
Suppose the code above ...
0
votes
0answers
24 views
MS Word macro to find text and format
I've recorded a macro in Word 2007 that finds a word, moves the cursor two lines up, inserts three '*', then highlights the line. It works fine, but only on the first instance of the found word. Im ...
0
votes
1answer
35 views
Multiple SQL query ouput in one Worksheet
Hope some one will help me with the problem i am facing. The issue is I am having difficulties in getting multiple SQL queries output in same excel worksheet.
Through below code i am able to get ...
0
votes
1answer
45 views
Include a file multiple times with different macros
I got a file that contains generic methods for working with arrays of different number types (the basic ideas are described in Pseudo-generics in C). The type can be specified by setting a TYPE macro. ...
0
votes
1answer
18 views
Auto collapse to definitions visual studio 2012
I have been looking high and low for a way to auto collapse to definitions in visual studio 2012 when you open a file.
I found a solution for VS2010 here Any way to auto collapse to definitions ...
0
votes
2answers
64 views
Out of range error for Windows().Activate
I have a bit of code in my macro which is as follows
ChDir File_pth
Workbooks.Open filename:= File_pth & "\" & open_tkt
Workbooks.Open filename:= File_pth & "\" & closed_tkt
...
0
votes
0answers
20 views
Trying to violate referential transparency in an excel UDF [duplicate]
I'm doing some tests to work out what you can and can't do with excel macros. The situation is that I want to call the following UDF from a cell and have it evaluate to "hotdawg" while also having the ...
3
votes
1answer
42 views
Excel 2007 Macro ,VBAProject can put a configuration file?
Firstly, I'm a newer to Excel Macro.
I have read some articles and done some work these days.
But now I'm so hesitant.Can .txt or .xml file be placed into VBAProject?If yes,how place and how to get ...
0
votes
1answer
31 views
Looping over a list and generate serial statements in a lambda
I have a macro called compare-and-swap!:
(define-macro (compare-and-swap! l x y)
`(if (> (vector-ref ,l ,x) (vector-ref ,l ,y))
(vector-swap! ,l ,x ,y)))
It works, I'm testing it like ...
2
votes
2answers
48 views
C macro: concatenate symbols conditonally
I have
#define A_T 1
#define B_T 2
int x_a = 1, x_b =2;
How can I define a macro, which can concatenate the suffix _a and _b to the var name?
for example, something like this
#define A_T_SUF _a
...
1
vote
2answers
33 views
Showing the updates being performed by macro
So I have seen all the ways to hide the screen updating in excel, what I'm looking for is a data problem, so I WANT to see the screen update. Is there a way to code the screen to update during the ...
0
votes
0answers
15 views
Windows Context Menu run Excel Macro
I have an Excel Macro that I am running to format data on a text file, and I wanted to see if there was a way to right click on this text file and be able to run this macro from the Windows context ...
0
votes
1answer
20 views
Excel: Agregate multiple tables separated by title
I have an excel file generated by SAP. I need change its format from multiple tables separated by a title to one single table. This is the original table:
and i need it to look like this:
Im new ...
1
vote
1answer
61 views
32 bit Excel macro not working with 64 bit
Trying to get this 32-bit macro to work on Office 2010 64-bit. I tried using PTrSafe but cannot get it working.---Novice at this
Thanks
Option Explicit
Private Declare Function fnGetComputerName ...
0
votes
1answer
45 views
Running TX433 and RX433 RF modules with AVR microcontrollers
I am trying to interface an RF module with AVR ATmega 128.
I found this code interesting, but I couldn't understand these two lines:
//define receive parameters
#define SYNC 0XAA// synchro signal
...
3
votes
2answers
86 views
Pseudo-generics in C
I need to implement some methods that do stuff with different kinds of number arrays. Usually, I'd use generics for that job, but as C doesn't provide them, I'm now trying to emulate them using ...
-2
votes
1answer
91 views
Excel VBA Insert a row(s) based on specific cell value
Would like to first state my experience level:
Excel = Intermediate
VBA Background = Beginner
Here's my situation: I am trying to write a VBA code in excel to automatically insert new rows based on ...
1
vote
2answers
80 views
How not to repeat myself without macros when writing similar CUDA kernels?
I have several CUDA Kernels which are basically doing the same with some variations. What I would like to do is to reduce the amout of code needed. My first thought was to use macros, so my resulting ...
0
votes
1answer
109 views
Insert copied row based on cell value - Excel 2007 Macro
The macro below (modified from here) will insert a blank row above any row that has a value of "0" in column E. Instead of inserting a blank row, is there a way to copy the row with "0" and insert it ...
4
votes
1answer
60 views
Clojure How to Expand Macro in Source File Versus Repl
I am leaning macros in Clojure and have a question about macro expansion. In the repl, when I do this:
user=> (defmacro unless [pred a b] `(if (not ~pred) ~a ~b))
#'user/unless
user=> ...
0
votes
0answers
40 views
extract data from set subfolders
I have the code below which reads all subfolders and extracts certain information,
the problem i have is \data contains subfolders called \data 1,\data 2,\data 3 and \material. All folders contain ...
1
vote
1answer
24 views
Elisp recursive macro
Trying to define resursive macro in elisp
(defmacro remacro (keys)
(if keys
`(func1 ,(car keys)
,(remacro (cdr keys)))
))
(macroexpand '(remacro '(a b c)))
But it is ...
2
votes
0answers
32 views
Remove leading “bullet” from a word document
I update a word document with an Excel macro
The Word starter has specific codes that may be preceded by a "Bullet" item (not just a period)
CtrlRep01
CtrlRep02
CtrlRep03
CtrlRep04
The ...
2
votes
3answers
143 views
How to implement a macro system into my LISP
I'm writing my own LISP based on Write Yourself a Scheme in 48 hours. (The code is here.) As a last exercise I want to implement macros. How can this be done considering that I represent expressions ...
-1
votes
0answers
20 views
Is any certification exam available for VBA ? any reply is highly appeciated. [closed]
Is any certification exam available for VBA (Macros) ?
any reply is highly appeciated.
1
vote
1answer
36 views
Combining two macros into one / create a macro which inserts code between two static code snippets?
I am working on a very small library which will allow the end user to create "commands" which can be called by providing a string in another function like call("this_function",params);
I have done it ...
0
votes
0answers
27 views
gcc optimizations: how to deal with macro expantion in strncmp & other functions
Take this sample code:
#include <string.h>
#define STRcommaLEN(str) (str), (sizeof(str)-1)
int main() {
const char * b = "string2";
const char * c = "string3";
strncmp(b, ...
0
votes
1answer
28 views
multiple use of substitute function but it should combine the results in one column and cell
please check the picture link to understand the query **
I want to combine the multiple raw into one text string , I can use substitute function to change one word in a text string but how can i use ...
0
votes
0answers
69 views
VBA Macro- PivotTble Auto-Filter Combo-Box - CurretnPage Issue
I am creating a dashboard with multiple pivot tables and have run into a problem that I cant seem to overcome. I have a primary worksheet where all the data will be displayed with direct references to ...
0
votes
2answers
53 views
Macro to copy and paste 5 last columns problems
I've just written a macro to find the last 5 columns with data and then copy and paste this preceeding the last column. I built this macro in a dummy document so not to corrupt my current file and ...
0
votes
0answers
31 views
Macro called in header generating “ Expected identifier or '(' ”
When the CGRectDivideWithPadding macro is called like this in the .h file:
CG_INLINE
void CGRectDivideWithPadding(CGRect rect, CGRect *slicePtr, CGRect *remainderPtr, CGFloat sliceAmount, CGFloat ...
-2
votes
0answers
25 views
Word 2013 Macros; formatting and text insertion
I am an author, I use certain set rules for formatting and manuscript text, I need three macros, one to insert front page matter with specified formatting, one to insert a part with correctly ...
1
vote
2answers
50 views
How do you transform a vector of maps into a series of symbols that eval to a particular map?
I am a Clojure newbie using Light Table to learn macros. My goal is to convert a vector of maps into a list of def statements.
I want to transform the following data structure:
(def label-data
[
...
0
votes
0answers
11 views
Netbeans text transformation: run custom java program (instead of macro) to edit or transform text
Is there simple way to "transform highlighted text" in the Netbeans editor? For example, I want to highlight text in Netbeans and feed that text to a java program, and get the output of the java ...
-2
votes
0answers
31 views
i want sum or item(5) individually…how to run loop [closed]
sql4 = "SELECT OLTC,OLYY,OLNO,OLSR,OLSRNO,OLMCD,OLQW,SUM(OLSALVAL),odsalprc FROM ORDLAB " & _
"INNER JOIN ORDDSG ON OLTC=ODTC AND OLYY=ODYY AND OLCHR=ODCHR AND OLNO=ODNO AND OLSR=ODSR " ...
2
votes
2answers
49 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__ << ':' << ...
1
vote
1answer
47 views
Excel sheet comparison - any order
I'm looking for a way to compare one excel sheet with another.
Is there a way to compare whole records, without regard to the order of records?
0
votes
2answers
31 views
Chained macro invocations. Argument in parentheses treated differently?
#define A(p1, p2, p3, p4) foo(p1, p2, p3, p4)
#define B(s) A(p1, p2, (s), p4)
Here, A() is a macros binding, aimed to increase portability should we ever need to call bar(p1, p2, p3, p4) and not ...
0
votes
0answers
24 views
Macro/formula to retrieve last posted balance in every 5th column
Im quite new to macro building and this website so was wondering if someone could help me. Im currently working on a database which collects purchase order totals and offsets every invoice received ...
2
votes
2answers
95 views
Lisp recursive macro problems
I'm writing a recursive Lisp macro taking a number n and evaluating the body n times (an exercise from ANSI Lisp). I've tried two ways of doing this -- having the macro call itself in its expansion, ...
-2
votes
0answers
54 views
Macro: search across two columns and copy the entire row if 2 values match
I have a quick question regarding macros. I have three sheets, the macro sheet, the master list sheet and a report sheet. I would like a macro (in the macro sheet) to search across two columns in the ...
0
votes
1answer
56 views
Hide AutoExec() and AutoNew() macros from the macro list yet still have them run?
I'm trying to keep certain macros running when Word fires up or opens another document, but I want them removed from the list of macros the user can access (alt+f8).
I've tried adding 'private' ...
0
votes
1answer
35 views
Is it possible to run Macro in more than 1 workbook at the same time?
I am new in this forum. I just need to know, if is it possible to run multiple macro in multiple workbooks at the same time. I am using Excel 2007. When I start the Macro in the workbook, I can not do ...
0
votes
1answer
38 views
Outputting Drop-Down Form Field to String for use in VBA formula
Ok, I have a Word 2010 template I'm playing with. I have a button at the top that users click to automatically save the word doc as a pdf with the (almost) correct name, in the correct directory, and ...
0
votes
0answers
37 views
Error Help: Adding to ranges using Application.Union
I am attempting to loop through a large list rows searching a specific column for values based on the values in another tab. I had it working for one value but as soon as I add a second criteria I am ...
0
votes
1answer
27 views
Excel: simple macro to paste as text returns error 1004: Could not run the paste method of worksheet class
When I try to copy any text from another application to a cell in Excel 2010 (Win 7 64bits) using this macro:
ActiveSheet.PasteSpecial Format:="Text", Link:=False, DisplayAsIcon:=False
I get this ...
0
votes
0answers
16 views
Automatically move data between tables on condition
I have an Excel 2007 spreadsheet titled "Generic". It has 3 sheets called "Sheet1", "Sheet2", and "Sheet3". Each sheet has a single table called "Table1", "Table2", and "Table3" respectively. The ...
2
votes
2answers
69 views
How to use defmacro instead of eval?
I have come up with the below function, which works as intended but it uses eval which is horrible, and does not exist in ClojureScript where i intend to use it.
(defn path [d p]
(eval
(concat ...
1
vote
1answer
32 views
how to create a macro in racket where a list becomes the args of said lambda?
How would I go about in doing a define-syntax-rule that accepts a list as arguments and a list (or a quote, in case it is a single element) as body of a lambda?
i would like to do something like:
...

