Is there a 'range' placeholder for macros in Google Charts/Sheets?









up vote
-1
down vote

favorite












I want to set up a macro that creates and formats a chart based on whatever range I select.



At the moment, because of 'B43:E46' in spreadsheet.getRange( ), the macro produces charts for this particular range.



Is there a place holder I can put here (e.g. $1, $2) that pipes in what ever I have selected (e.g. if I were to select B47:E50)



function createchart1() {
var spreadsheet = SpreadsheetApp.getActive();
spreadsheet.getRange('B43:E46').activate();
var sheet = spreadsheet.getActiveSheet();
var chart = sheet.newChart()
.asColumnChart()
.addRange(spreadsheet.getRange('B43:E46'))
.setMergeStrategy(Charts.ChartMergeStrategy.MERGE_COLUMNS)
.setTransposeRowsAndColumns(false)
.setNumHeaders(-1)
.setHiddenDimensionStrategy(Charts.ChartHiddenDimensionStrategy.IGNORE_BOTH)
.setPosition(31, 1, 170, 111)
.build();
sheet.insertChart(chart);









share|improve this question























  • Why not pass the range to the function as a parameter?
    – ttarchala
    Nov 9 at 15:50






  • 1




    Read about the Selection class in the Apps Script developer reference. @tt macros are called from the spreadsheet via key combo, not via menu or sidebar. While a wrapper that passes the selection to this plotter is a good idea, it isn't critical unless the plot code could also be used by other code in this project
    – tehhowch
    Nov 10 at 14:50














up vote
-1
down vote

favorite












I want to set up a macro that creates and formats a chart based on whatever range I select.



At the moment, because of 'B43:E46' in spreadsheet.getRange( ), the macro produces charts for this particular range.



Is there a place holder I can put here (e.g. $1, $2) that pipes in what ever I have selected (e.g. if I were to select B47:E50)



function createchart1() {
var spreadsheet = SpreadsheetApp.getActive();
spreadsheet.getRange('B43:E46').activate();
var sheet = spreadsheet.getActiveSheet();
var chart = sheet.newChart()
.asColumnChart()
.addRange(spreadsheet.getRange('B43:E46'))
.setMergeStrategy(Charts.ChartMergeStrategy.MERGE_COLUMNS)
.setTransposeRowsAndColumns(false)
.setNumHeaders(-1)
.setHiddenDimensionStrategy(Charts.ChartHiddenDimensionStrategy.IGNORE_BOTH)
.setPosition(31, 1, 170, 111)
.build();
sheet.insertChart(chart);









share|improve this question























  • Why not pass the range to the function as a parameter?
    – ttarchala
    Nov 9 at 15:50






  • 1




    Read about the Selection class in the Apps Script developer reference. @tt macros are called from the spreadsheet via key combo, not via menu or sidebar. While a wrapper that passes the selection to this plotter is a good idea, it isn't critical unless the plot code could also be used by other code in this project
    – tehhowch
    Nov 10 at 14:50












up vote
-1
down vote

favorite









up vote
-1
down vote

favorite











I want to set up a macro that creates and formats a chart based on whatever range I select.



At the moment, because of 'B43:E46' in spreadsheet.getRange( ), the macro produces charts for this particular range.



Is there a place holder I can put here (e.g. $1, $2) that pipes in what ever I have selected (e.g. if I were to select B47:E50)



function createchart1() {
var spreadsheet = SpreadsheetApp.getActive();
spreadsheet.getRange('B43:E46').activate();
var sheet = spreadsheet.getActiveSheet();
var chart = sheet.newChart()
.asColumnChart()
.addRange(spreadsheet.getRange('B43:E46'))
.setMergeStrategy(Charts.ChartMergeStrategy.MERGE_COLUMNS)
.setTransposeRowsAndColumns(false)
.setNumHeaders(-1)
.setHiddenDimensionStrategy(Charts.ChartHiddenDimensionStrategy.IGNORE_BOTH)
.setPosition(31, 1, 170, 111)
.build();
sheet.insertChart(chart);









share|improve this question















I want to set up a macro that creates and formats a chart based on whatever range I select.



At the moment, because of 'B43:E46' in spreadsheet.getRange( ), the macro produces charts for this particular range.



Is there a place holder I can put here (e.g. $1, $2) that pipes in what ever I have selected (e.g. if I were to select B47:E50)



function createchart1() {
var spreadsheet = SpreadsheetApp.getActive();
spreadsheet.getRange('B43:E46').activate();
var sheet = spreadsheet.getActiveSheet();
var chart = sheet.newChart()
.asColumnChart()
.addRange(spreadsheet.getRange('B43:E46'))
.setMergeStrategy(Charts.ChartMergeStrategy.MERGE_COLUMNS)
.setTransposeRowsAndColumns(false)
.setNumHeaders(-1)
.setHiddenDimensionStrategy(Charts.ChartHiddenDimensionStrategy.IGNORE_BOTH)
.setPosition(31, 1, 170, 111)
.build();
sheet.insertChart(chart);






google-apps-script google-sheets google-sheets-macros






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 9 at 20:50









TheMaster

8,3273730




8,3273730










asked Nov 9 at 12:34









cget

186




186











  • Why not pass the range to the function as a parameter?
    – ttarchala
    Nov 9 at 15:50






  • 1




    Read about the Selection class in the Apps Script developer reference. @tt macros are called from the spreadsheet via key combo, not via menu or sidebar. While a wrapper that passes the selection to this plotter is a good idea, it isn't critical unless the plot code could also be used by other code in this project
    – tehhowch
    Nov 10 at 14:50
















  • Why not pass the range to the function as a parameter?
    – ttarchala
    Nov 9 at 15:50






  • 1




    Read about the Selection class in the Apps Script developer reference. @tt macros are called from the spreadsheet via key combo, not via menu or sidebar. While a wrapper that passes the selection to this plotter is a good idea, it isn't critical unless the plot code could also be used by other code in this project
    – tehhowch
    Nov 10 at 14:50















Why not pass the range to the function as a parameter?
– ttarchala
Nov 9 at 15:50




Why not pass the range to the function as a parameter?
– ttarchala
Nov 9 at 15:50




1




1




Read about the Selection class in the Apps Script developer reference. @tt macros are called from the spreadsheet via key combo, not via menu or sidebar. While a wrapper that passes the selection to this plotter is a good idea, it isn't critical unless the plot code could also be used by other code in this project
– tehhowch
Nov 10 at 14:50




Read about the Selection class in the Apps Script developer reference. @tt macros are called from the spreadsheet via key combo, not via menu or sidebar. While a wrapper that passes the selection to this plotter is a good idea, it isn't critical unless the plot code could also be used by other code in this project
– tehhowch
Nov 10 at 14:50

















active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













 

draft saved


draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53225814%2fis-there-a-range-placeholder-for-macros-in-google-charts-sheets%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes















 

draft saved


draft discarded















































 


draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53225814%2fis-there-a-range-placeholder-for-macros-in-google-charts-sheets%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

How to how show current date and time by default on contact form 7 in WordPress without taking input from user in datetimepicker

Syphilis

Darth Vader #20