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
1answer
42 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
39 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
28 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:
...
1
vote
5answers
68 views
Why should or shouldn't we prefer a macro that accepts arguments over a function that does the same job?
Following are two programs that give the area of the circle when the radius is passed as argument.But in the first program, macro.c, I am using a macro for the job ,while in the second,function.c I am ...
0
votes
1answer
24 views
(Macro Language Processor m4) How do I run resp. compile .m4 programs on Ubuntu 13.4?
I installed m4 from this site:http://www.geeksww.com/tutorials/libraries/m4/installation/installing_m4_macro_processor_ubuntu_linux.php
So far so good. The package also had some examples in it. If I ...
-1
votes
0answers
24 views
Excel Macro help. Selecting rows between two specific text strings [closed]
I am trying to create a macro to select between two specific text strings. This data is repeating, and I would like to capture it and then paste it on successive new sheets. Each set of data begins ...
0
votes
1answer
46 views
Using def-macros to capture source code
(for TL;DR, go to the bold face part)
I am having a clean closed type class system with serialization (detached from POJO serialization woes). For example:
trait Expr
case class Const(i: Int) ...
2
votes
2answers
74 views
VBA Excel Won't Change Cell to the Right Color
I am new with using VBA macros in excel, and I am trying to change the background color of a cell based on the condition that another cell is not empty. I thought I had it figured out, but I must be ...
0
votes
0answers
42 views
Running a OpenOffice BASIC macro in Calc using Java
I have a BASIC Macro in OpenOffice 3.3 stored in "My Macros > Standard > Module 1". I want to run the BASIC macro with Java in my OpenSUSE Linux PC. I have referred this SO question and OpenOffice ...
0
votes
1answer
34 views
Excel macro select between 2 specific words
Can somebody help to me in Excel macro ?
I need to select between 2 words what i definied before and delete it..
For example:
"http:/ertwertw4r!%!+53445433333/cat.jpgThere is a dog"
I need to ...
1
vote
0answers
55 views
Using Range.Offset but “User-defined type not defined” popup in VBA
I write a simple function in the Modules as follow:
Function allocate(ByVal pq As PriceQtyClass, ByVal al As AllocationClass) As Boolean
Dim tmpRange As Range
Dim tmpDic As Dictionary
...
0
votes
0answers
18 views
Run a xlsm marco in ubuntu box
I created a Macro convert xlsm to pdf. Now, i wanna put the xlsm on an ubuntu box, then use a python script to call the convert Macro automatically.
After dig in xlrd & xlwt lib, i found those ...
0
votes
1answer
27 views
Calculating totals per column, per row, with a macro
I need some help with VBA. I have this sheet:
Game Room City Machines_week_1 Played_week_1 Won_week_1 Machines_week_2 Played_week_2 Won_week_2
A Julia ...
0
votes
1answer
50 views
How to change cell color property when no longer active
I have a worksheet event macro that fires when a hyperlink formula is clicked - it "highlights" (changes the cell interior color) the hyperlink destination cell so it is more visible to the end user. ...
0
votes
0answers
37 views
Excel VBA Trouble Calling Files from Virtual Desktop
I am writing a Macro in Excel to pull data from multiple files in a folder. It is supposed to open the files one at a time, copy and paste the relevant information, then move on to the next file.
It ...
0
votes
1answer
48 views
Outlook 2003 toolbar customization: add/edit button list
I have macros in my VbaProject.OTM file. A new toolbar is created when Outlook is launched to allow users to easily run the macros.
(sorry about the interface being in French ;-))
So far, it works ...
0
votes
1answer
32 views
(m4: Macro Processor) Dont understand complex define command
I'm currently reading the book
"SPARC Architecture, Assembly Language Programming, and C. Second Edition".
I got to a place in the book, where I don't understand or am not able to comprehend a ...
-1
votes
0answers
26 views
Date difference between system date and orderdate as well as want to show since how much days particular order is pending in vba or sql
I have one doubt, i want to those order no which is less than system date and want to show which order no is pending from 3 days,4 days as well as.....
my query is like.
select distinct tddt,bqty
...
1
vote
1answer
31 views
Need help /w Excel vba macro
I recently started working on an Excel spreadsheet that needs to have most of it's cells protected from editing. I can't protect the sheet in the usual way because I work with groups, you know, those ...
2
votes
4answers
58 views
How do I check if one of multiple macros is defined in a single #ifdef?
I have some C++ code, and want to perform an action if the __APPLE__ or __linux macros are defined.
If I did it as a normal if conditional, it would be easy using ||:
if (something || something) { ...
2
votes
2answers
86 views
Clojure macro that doesn't need space next to it
Trying to create a macro form of Haskell's lambda syntax, I'm pretty close except one last tweak, the / (which should be a \, but can't grumble..) needs a space next to it, is there any way to make it ...
1
vote
1answer
32 views
Macro want to use symbol instead of string in clojure
So trying to make something like the haskell lambda syntax, and with a macro this is what I've got:
(defmacro / [& all]
(let [args (take-while #(not (= %1 "=>")) all)
argCount (count ...
1
vote
2answers
60 views
Macro SWAP(t,x,y) exchanging two arguments of type t
So I am basically trying to make a SWAP(t,x,y) macro that exchanges two arguments of type t. I am trying to think of going around the problem when these two arguments are of the form
v[i++] and ...
2
votes
1answer
73 views
Macro overloading
Is it possible to define something like this:
#define FOO(x, y) BAR()
#define FOO(x, sth, y) BAR(sth)
so that this:
FOO("daf", sfdas);
FOO("fdsfs", something, 5);
is translated to this:
BAR();
...
0
votes
0answers
37 views
macro is not giving proper output when primary key is missing and doing transpose of the col to row
When i am running my macro,if my order_no is like 1,2,3,4,5,6,7, i.e primary, that time it is giving garbage value.and sub order no is like 1,2,3,4,8,9 in this 5,6,7 are missing which is also primary ...
3
votes
3answers
130 views
How to extract __VA_ARGS__?
I hava a macro to call static function for each args.
For example:
#define FOO(X) X::do();
#define FOO_1(X,Y) X::do(); Y::do();
My question is that I need to use foo with variable number of ...
0
votes
2answers
96 views
Parsing excel data ( containing xml ) in VBA
I have a simple excel file containing rows and columns. One of the column contains rows of data which is string like this (XML data)
<Employee Name="R1" Designation="Developer">
<SkillSet ...
1
vote
1answer
47 views
Can I font format the output of a word macro?
I have a document with comments on a long interview transcript. I found a Macro on SO that let's me export those comments with the highlighted text. This is awesome but the output is terribly dull ...
0
votes
0answers
45 views
Scala macros, get methods by reflection
I need something like this:
object Macros {
def check[T](f: T): Any = macro check_impl[T]
def check_impl[T](c: Context)(f: c.Expr[Any]): c.Expr[T] = {
import c.universe._
//get all ...
0
votes
2answers
65 views
Freeing allocated memory conditionally within a macro in C
I have a function that reads a csv file and then updates a struct with it's parameters.
I wanted to be able to cycle through a structs elements, so I turned to macros. The output of parsing the csv ...
0
votes
1answer
111 views
Excel Delete row if cell contains an empty cell
I am trying to do a bit of data-preprocessing. I want to write a macro that deletes any rows that contain any empty cells.
I've been looking on the internet for help but they've either gotten me ...
1
vote
1answer
52 views
How to keep variable amount of numbers after decimals
I am using Excel 2007. I have multiple data sets with random number of characters in each row. For example:
A1 1.60
A2 0.008
A3 0.900
A4 1.0
A5 0.56
A6 1.703
I need to make it into a ...
0
votes
0answers
15 views
Macro write result in next empty cell
I'm trying to put the result of an equation in the next blank cell, but Im not getting it right.
I have:
For p=1 to LastRow
a = Range("A1").Offset(p,0)
c = Range("C1").Offset(p,0)
For i = 1 To ...
1
vote
1answer
51 views
“ #Name? ” error in access using DLookup
What I am trying to do is to have a value("Element" which is a primary key) from my Elements table be inserted into the time text box based on the result from the previous combox box is this the ...
0
votes
1answer
15 views
`Is defining a macro via -D option ALWAYS equivalent to #define MACRO (except precedence)
I have a third party piece of code that works differently when I add a macro via Makefile e.g. -DMacro instead of doing #define MACRO in a top level header file
(which as their documentation implies ...
0
votes
1answer
32 views
Autohotkey - Duplicate Selected Lines Down
i want to simulate a Netbeans feature. I want to be able to duplicate the selected LINES. (not the selected text).
I have written the following AutoHotkey macro
DuplicateDown()
{
SetKeyDelay, -1
...
0
votes
0answers
53 views
how to create hyperlinks to all headings using macro (MS Word)
I have a long document with 100s of level 1 headings. What I want is to place hyperlinks to all those headings at the begining of the document so user can directly click on the link and navigate to ...
1
vote
5answers
120 views
looking for macro which will replace function
I dont know if name of topic exactly introduces my problem, but thing is:
in my company code, there is a function, for example:
float func_x(float a){
float b
return b
}
that function ...
-2
votes
0answers
26 views
Moving excel data between spreadsheets - macro [closed]
I have two invoices (in Excel) containing similar data, but are set out differently (in regards to column, headings etc). I was wondering how I would go about creating a macro that moves and arranges ...
1
vote
3answers
102 views
VBA check if file exist
I have this code. It is supposed to check if a file exist and open it if it does. It does work if the file exist and if it doesn't, however, whenever i leave the textbox blank and click the submit ...
2
votes
3answers
127 views
Backquote without parens
I am working through the excellent book Let Over Lambda, and I am trying to port the Common Lisp code for defunits over to Clojure.
The following generates a macro that is supposed to take
(defn ...
5
votes
1answer
198 views
try..catch macro wrapper equivalent in cython
I'm wrapping a large number of C++ functions that can raise an exception if the underlying socket connection is lost. While I have figured out how to wrap my "get connection" function to re-establish ...
1
vote
1answer
48 views
C macro gives compile time error
I want to use macro to expand a function. So I wrote the following code:
#define INIT ( T ) \
struct T * init##T() { \
struct T * obj = ( struct T *)malloc( sizeof (struct T )); \
return ...
0
votes
1answer
40 views
Find which cells have the smallest levenshtein distance
So, I have this Function which will quickly return the Levenshtein Distance between two Strings:
Function Levenshtein(ByVal string1 As String, ByVal string2 As String) As Long
Dim i As Long, j As ...
0
votes
3answers
41 views
SAS Do Over Macro - Backwards
I am using the Macro Arrays and Do Over Macro.
I would like to rewrite this code with a do over macro:
if mysequence > 4 then grammar_last_5 = grammar_last_4;
if mysequence > 3 then ...
0
votes
1answer
22 views
Array Concatenate text and variable
I'd like to create an array as follows:
Dim vHdr As Variant
vHdr = Array("Jogo", "Sala", "Operadora", "Semana", "NSemana", "Acumulado Semana 3")
However, in "Acumulado Semana 3", the 3 is a ...
0
votes
1answer
28 views
Powerpoint attaching a VBA function on a button
I have found how to create a button and I want to make it so when I press it it does the following function.
<-Button->
Sub AddButton()
Dim cb As CommandBar
Set cb = ...

