How to invert the coloring scheme in "Color Scale" quick analysis?

319

Quick analysis only helps to quickly create a visualisation. After that, you can select the formatted data and use the Conditional formatting dialog to select another color scale.

Share:
319

Related videos on Youtube

Osceria
Author by

Osceria

Updated on September 18, 2022

Comments

  • Osceria
    Osceria almost 2 years

    I have a datable with n number of rows/columns. I would like to filter the rows based on a column which has only one character value as "*". My version is C#2.0. How to filter the rows and copy into a new datatable.

    This code is not working;

    DataTable result = dt.Select("FLAG= '*'");
    
    • Osceria
      Osceria over 4 years
      the filter criteria is column with only value as "*" in the cell
    • Ilia Maskov
      Ilia Maskov over 4 years
      Can't reproduce that actually dotnetfiddle.net/SwIvlk
    • Osceria
      Osceria over 4 years
      Updated the code in dotnetfiddle.net/SwIvlk it throws error now
    • Ilia Maskov
      Ilia Maskov over 4 years
      i don’t see your changes, you must press share button to apply them.
    • Osceria
      Osceria over 4 years
      dotnetfiddle.net/1L1iZA Please find the updated code here
  • James Russell
    James Russell about 11 years
    I see! I was looking all over for a place to change the formatting and couldn't find it. Thank you very much.