About 50 results
Open links in new tab
  1. Dynamic Constant Line in PowerBI Line Chart - Stack Overflow

    Mar 13, 2024 · 0 I have a line graph that I'm attempting to create a constant line that is based on a value that's in the chart. What I need is the value in [Sept 2023-5%=constant line]. The …

  2. Excel: creating an array with n times a constant

    May 25, 2018 · I have been looking around for a while but unable to find an answer to my question. In Excel, what compact formula can I use to create an array made up of a single …

  3. How to keep one variable constant with other one changing with …

    207 Lets say I have one cell A1, which I want to keep constant in a calculation. For example, I want to calculate a value like this: =(B1+4)/(A1) How do I make it so that if I drag that cell to …

  4. c - Constant pointer vs Pointer to constant - Stack Overflow

    Jan 31, 2014 · Constant Pointers Lets first understand what a constant pointer is. A constant pointer is a pointer that cannot change the address its holding. In other words, we can say that …

  5. c - Error "initializer element is not constant" when trying to ...

    Moreover, in C language, the term "constant" refers to literal constants (like 1, 'a', 0xFF and so on), enum members, and results of such operators as sizeof. Const-qualified objects (of any …

  6. Defining a global constant in C++ - Stack Overflow

    I want to define a constant in C++ to be visible in several source files. I can imagine the following ways to define it in a header file: #define GLOBAL_CONST_VAR 0xFF int …

  7. How do I create a constant in Python? - Stack Overflow

    Apr 21, 2010 · How do I declare a constant in Python? In Java, we do: public static final String CONST_NAME = "Name";

  8. How to get rid of `deprecated conversion from string constant to …

    Sep 13, 2008 · I'm working on an exceedingly large codebase, and recently upgraded to GCC 4.3, which now triggers this warning: warning: deprecated conversion from string constant to ‘char*’ …

  9. Add column to dataframe with constant value - Stack Overflow

    Apr 8, 2015 · Name, Date, Open, High, Low, Close abc, 01-01-2015, 565, 600, 400, 450 I know how to append an existing series / dataframe column. But this is a different situation, because …

  10. How to declare a constant in Java? - Stack Overflow

    Oct 9, 2012 · We always write: public static final int A = 0; Question: Is static final the only way to declare a constant in a class? If I write public final int A = 0; instead, is A still a constant or...