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 ...

learn more… | top users | synonyms (2)

0
votes
1answer
21 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
22 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 = ...
2
votes
1answer
75 views

How to understand and use scala macro, and write a more complex function

The documentation of scala macro is very hard to understand, so I think it must have some background knowledge if one wants to use it in real case. And I ask help for what these knowledge are. ...
1
vote
2answers
62 views

VBA macro crashing Excel

Hi fellow communiteers, I'm running a macro to delete entire rows that contain a certain value. The code works fine on small data sets but on the current one (~22,000 records) it consistently ...
0
votes
1answer
33 views

Can you sort an adjacent row to a row you've already sorted, based on that row?

I have a macro to sort different rows. However, once I sort one row, I want the adjacent data to be sorted within those sorts. The example below will give a good pictorial represenation. 1 B 1 A 1 ...
-1
votes
1answer
207 views

How to create an automated dynamic line graph in Excel VBA

I have a work problem. I have a data report with tons of information in it and I need to create 3 line graphs to represent 3 different values over time. The time is also in the report and is the same ...
2
votes
4answers
150 views

C++ Advantages/Disadvantages of Implementing functions as macros

Is it a good idea to implement business logic functions as macros? I inherited some legacy c++ code and I find a whole lot of business logic functions are implemented as long cryptic macros. Is ...
0
votes
1answer
119 views

EXCEL VBA- Compare columns in different worksheets, highlight non-overlapping content

So, I'm new to VBA, so go easy. I have two different worksheets-- Merged Nativity Codes and 2007-2011 Nativity Codes. I want to iterate through all the values in the 2007-2011 codes (Column B) and ...
2
votes
1answer
52 views

Get file path of selected image in Word macro

I have a Word document that contains several images. The images are located on the hard drive in a sub-folder and they are linked into the Word document. I would like to select an image and execute ...
1
vote
2answers
49 views

VBA drag formula from left to right

I am trying to drag a formula from a cell to another cell to the right (i.e. cellA1 [formula: A2 + A3] -> cellB1 [formula: B2+B3]). Here is what I have: Dim lastColumn As Long lastColumn = ...
0
votes
0answers
23 views

Multipurpose word macro

I'm looking for a multipurpose Word macro/vba-macro to multi-select or select in a loop the following objects in Word: Headings - to format text in headings Bullet-ed text Pictures (inline, shape or ...
1
vote
1answer
72 views

Find Text, Insert Rows then Copy & Paste after changing specific Text

I have a data of rows and columns and I would like my macro to find certain text (Location) in one column and upon finding the location create 2 or more rows and copy the data of the found Location ...
1
vote
1answer
62 views

how to compare data between two pivots and change color if any mismatch is there?

I created a macro to create a pivot for the data present in the sheet named "data". and the same for data present in the sheet "record". the content of these sheets is comparable everytime. I want to ...
1
vote
3answers
88 views

safe malloc/realloc: wrapping the call into a macro?

I would like to wrap my calls to malloc/realloc into a macro that would stop the program if the method returns NULL can I safely use the following macro ? #define SAFEMALLOC(SIZEOF) (malloc(SIZEOF) ...
0
votes
1answer
38 views

ImageJ Rotation Macro Call Slows Down By Each Call

I have been working on a project in which I am trying to rotate images by ImageJ macros, basically the related part looks like: IJ.run(sourceImage, "Arbitrarily...", "angle=" + angle + " grid=1 ...
0
votes
1answer
60 views

no overload for method 'Open'/'Run' takes '1' arguments

I met this problem as title showed when I editing script task in C # in SSIS, I tried several solutions found online, but don't work. can you find out why? using Microsoft.VisualBasic;using System; ...
1
vote
1answer
61 views

C# interfaces and macro constant alternatives

I'm creating a RESTful service using a C# WCF project and have a question about interfaces and macro constant alternatives. I have a bunch of WebGet decorations which look like this (highly ...
0
votes
0answers
43 views

clang preprocessor “empty macro arguments”

Here is the original definition: #define foo(a,b) void foo(int a, int b){} foo(,); The above code get warning message when building with clang: "warning: empty macro arguments are a C99 feature ...
1
vote
1answer
98 views

An Excel formula, find maximum and check for multiple conditions

I asked a similar question before this but it turned out that whatever formula I was using does not give me the correct result. So I have to reask the question and make it more specific. Suppose I ...
-3
votes
0answers
35 views

How can I automatically format an excel table to format text such as the following:

How can I automatically format an excel table to format text such as the following: from: allopurinol (ZYLOPRIM) 300 mg tablet Take 1 tablet by mouth once daily. to Allopurinol 300 mg ...
0
votes
0answers
43 views

Word macro for formating multiple images

I would like to check if a word /vba macro can be written to select all the images in a word document and change their text wrapping type to wdWrapTopBottom. The problem is this doesn't work for ...
0
votes
0answers
47 views

Wrote this excel macro in VBA, but when I run it nothing happens; It might be unable to recognise the values inside the pre-defined range

So I have three groups of columns, like this A B C D A B C D A B C D Where D is an integer. I just want to pull out any columns that have all three of the D columns with each value greater than ...
0
votes
1answer
33 views

Using macros in gnuplot 4.6.3

I tried to find a similar error described on the web but did not find anything. Hope someone can help. I use a code similar to this example with gnuplot 4.4p3: set macros col_TIME = '1' col_meas = ...
0
votes
0answers
49 views

EXCEL VBA SetFocus not working in Excel 2013

As stated in title, when i call SetFocus for my textbox, it throws me this error Run-time error '438': Object doesn't support this property or method. Is SetFocus readily available in Excel 2013 or do ...
11
votes
2answers
167 views

How to force excel cells to change colors EXPONENTIALLY?

I need to write a macro such that: I fill in A1 with a black color. Then as I run the macro, A2 should be a little lighter, A3 even lighter... etc until A20 is white. "F5" cell value should control ...
0
votes
1answer
28 views

Is it possible in Geomagic Studio to compute volume via Python macro?

I'm using Python scripts to realize macros in Geomagic Studio 2012. I need to calculate, on a set of scanned objects, the volume of several of them respect to the total. Currently, I: write down ...
4
votes
2answers
61 views

Excel macro for not proportional gradient colors assigned to a range of cells

I need to write a macro such that: I fill in A1 with a purple color. Then as I run the macro, A2 should be a little lighter, A3 even lighter... etc until A20 is white. But this color change should not ...
1
vote
1answer
57 views

Custom Excel VBA Hotkey for “Go To Previous Sheet”

I am attempting to make a custom hotkey that will go to the previous sheet viewed. As far as I understand, this would involve making a Class Module as a Worksheet object that will capture Sheet ...
0
votes
2answers
64 views

Excel macro to incrementally number identical cells in a sorted column, resetting count to 1 when cell content changes

This is a follow-on from a previous question (If cell contains value n, how can I create a column of n cells, each containing value n (and then repeat with another cell)?). I have a column of numbers ...
1
vote
1answer
25 views

The pivot name is not getting assigned,how to debug?

I have created a macro to create a pivot for the data present in a sheet named "data". I put in the name of the pivot as "Pivot_Data" but when the pivot gets created the name comes as sheet1 for the ...
0
votes
1answer
114 views

Remove line breaks, return carriages, and all leading space in Excel Cell

I have no idea what is happening, but I have cells that contain what appears to be a return carriage. I have tried TRIM(), CLEAN(), =SUBSTITUTE(A1,CHAR(10),"") and a number of macros to remove these ...
0
votes
1answer
58 views

How to speed up a comparison macro?

I would like some tips to run this macro faster. I have a long range of data and it takes too long. Any of you guys have an idea to speed it up? Sub GanadoAcumulado() With ActiveSheet ...
2
votes
1answer
57 views

How to list DataMacro objects in an Access database?

Is it possible to programmatically enumerate the Data Macros in an Access 2010+ database? If so, how? Note: Data Macros are trigger-like procedures that are created in the context of the table ...
22
votes
4answers
1k views

Explanation of C++ FAQ's unsafe macro?

According to the C++ FAQ, macros are evil: [9.5] Why should I use inline functions instead of plain old #define macros? Because #define macros are evil in 4 different ways: evil#1, evil#2, ...
0
votes
1answer
26 views

excel date time cell being covertet to numeric and cant stop it

i have two sheets the first one to call a value from the second sheet, in the first sheet i have =IFERROR(VLOOKUP(B2,'sheet'!B5:'sheet'!I2500,8,FALSE),"") this works fine for all full text fields ...
0
votes
2answers
75 views

How to create and format various charts in powerpoint based on excel data?

I have been trying to find a solution, be it a macro or a simple solution, to create and format charts in a powerpoint presentation. So far I could not find anything that would solve my issue. The ...
0
votes
1answer
72 views

QlikView - Sub-Selections

I have two different tables to load into QV. The first table contains two rows: item_id and item_name. The second table contains the associations: item_id and item_property. Obviously each single ...
1
vote
1answer
51 views

Is it possible to stringify a variadic macro?

gcc (GCC) 4.7.2 c89 Is it possible to stringify a variadic macro? I have the following macro and I want to output the resulting string from the fmt and arguments. #define ERROR_MESSAGE(priority, ...
0
votes
2answers
94 views

Preprocessor macro with dot?

Is it possible to define a macro that would accept expression like: object.method()? I would like to make a macro that changes that expression into... nothing (kind of deletes it). With just ...
0
votes
1answer
71 views

Need help for coding in excel with VBA macros

I have kid of a big problem, or at least for me it's a big problem. I am new at VBA and I wanted to do somehting that's possibly easy but I don't know how to. So, for you it may be quite easy but it ...
0
votes
1answer
21 views

MS Access transfer text throws unparseable errors when quotes and apostrophes are together

A section of what I'm parsing is this E,"1"".""0""1","1""/""1""1","3""4""5""6","6""5""4""3",'1"'1"'1"'1","1""1""/" The parse always stops at '1"'1"'1"'1" right on the first quotation. Nothing after ...
0
votes
1answer
36 views

I am attempting to create a macro that will sele

I have a basic understanding of VBA, Im trying to create a macro that will select specific rows in a table. For example: Dim Myrange as Range With ActiveDocument.Tables(1) Set.myrange= ...
-4
votes
0answers
21 views

Excel Macros charts [closed]

I am relatively new to writing code in macros. I am building a KPI dashboard and need to change the 7 widgets between two different data sets, with a drop down option. Each widgets data set will be ...
2
votes
2answers
60 views

Excel VBA: Loop from largest value and check for conditions

I am trying to write a Excel VBA code which do the following: Find the largest value in a column Check 2 conditions for the largest value: If satisfy the 2 conditions, pull the largest value If not ...
0
votes
1answer
87 views

If cell contains value n, how can I create a column of n cells, each containing value n (and then repeat with another cell)?

For the sake of simplicity, let's say I have a column of 5 numbers as follows:- 8 15 8 3 26 What I want to do is create a column composed firstly of 8 cells containing the value '8', then 15 cells ...
-1
votes
1answer
23 views

excel assemble two sheets exported from database

I have two sheet of excel exported from a database with hundreds of rows. In first sheet I've these columns name age gender id1 23 m id2 45 f In second sheet these columns id1 john ...
0
votes
0answers
28 views

create a ribbon button from VBA editor

I want to create a ribbon button from VBA who execute the macro that I created. It would be great also if it can be saved as file to have the option to add the ribbon button in any computer with ...
1
vote
1answer
53 views

Activate a Macro each time I use a Validation List in Excel

I have a Validation List that selects different countries. Each country has different sellers and I have to make a Validation list for them too. The problem is that I have to run a macro manually ...
1
vote
0answers
45 views

Preprocessor target checking

I wanna use preprocessor commands to test which target i'm compiling for. Every egs i read told to do that : -Add a preprocessor macro in my target. -Do this : #ifdef TARGET_NAME_MACRO ...
0
votes
0answers
11 views

add macro to powerpoint through visual studio add-in

I want to create an add-in in visual studio that creates a ribbon with a button and when you click that button it adds a macro (that is in a file in the computer) to the presentation. the idea is to ...

1 2 3 4 5 108