Is there any way to give the grey section header like General, Lines, Invoice, Shipment a different color? E.g. I want to be General a blue color, Lines a light blue color and so on.
Alternating colors on navision reports i.e on lines alternating white and grey colors?
253 Views Asked by Brian Cheruiyot At
1
There are 1 best solutions below
Related Questions in NAVISION
- How to give access to RAPIDSTART in Business Central to SUPER user?
- Couldn't Consume a WebService SOAP from Dynamics Nav server with JAVA SpringBooot
- I can't get the average of child group in my RDLC report - Navision 2009
- Navision 2017 Adding Assembly BOM Item says it already exists
- Searching any table for any field in procedure Dynamics Business Central AL
- SQL Report Builder 2014 ignores Arial Font and Report uses Helvetica instead
- smtp problem for outlook 365 for navision 2013,2016
- .net framework application accessing methods and data from Microsoft Dynamics Nav 2013, is it possible?
- How can i export line records to excel in navision using c/al code
- Deep Insert last line insert triggering or whole batch insert triggering
- What table/view in Navision's DDBB holds the item costs in a FIFO system?
- Importing .XLSX file to Navision throws an error verticalDpi has invalid value '0'
- Business Central 22 http requests don't show on fiddler
- NAV 2013 Automation Object not initialized?
- Getting Error while reading instream in navision 2013
Related Questions in CAL
- calcom embed iframe html issue
- Change or hide a custom action from the standard page in MS D365 Business Central, which is added via another custom extension
- How can i export line records to excel in navision using c/al code
- NAV 2013 Automation Object not initialized?
- Getting Error while reading instream in navision 2013
- Dynamics Nav C/AL all message in one
- How to subtract current value from previous value in a column using C/AL code
- Found a bug in cal CLI application in Linux Debian 10
- C/AL NAV Input textbox
- call c# from vb.net is hanging
- NameError: name 'No' is not defined
- Alternating colors on navision reports i.e on lines alternating white and grey colors?
- Why does execve return differently than user
- Item Journal Line Table's Records are getting deleted by itself
- Microsoft Dynamics NAV: Error Message Log
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
in the C/AL editor enter one line of code inside DataItem - OnAfterGetRecord() trigger: RowColor := NOT RowColor; // to invert the boolean with each row
in the report layout (I use Visual Studio) select the row with data and in the Properties find attribute BackgroundColor. Click and choose option Expression (on the bottom) and enter this line: =IIF(Fields!RowColor.Value, "#EFEFEF", "#FFFFFF")