I have a requirement where I need to display account number in RDLC such that it displays last 3 characters and all other characters are displayed as '*'. for eg 1234567 needs to be displayed as ****567. I'm passing in dataset containing account number to the RDLC and need to write an expression which will format account number to display 3 last digits and all preceding characters as"*". Can anyone help me with the expression writing for it? I'm very new to writing expression on RDLC.
Format a string to display only 3 last characters and others as asterisks in RDLC
491 Views Asked by prabhat At
1
There are 1 best solutions below
Related Questions in RDLC
- Conditional Background Image in RDLC Report
- Render local pdf reports in c# from .rdlc template for cross platform as using System.Drawing is not supported for non-windows platforms
- In RDL report how can I move tablix rows down?
- Problem with loading rdlc in report viewer
- How to make page columns in RDLC Report?
- RDLC Expression to Trim Value IF begins with
- Repeat Row that is not header in SSRS Report
- How to use Watermark in RDLC report
- Want to add another row in tablix if my data is changed from the same field in RDLC
- C# WebForms RDLC Report | Data source instance was not provided for the dataset
- While generating RDLC report in API service
- C# RDLC report viewer - Displaying multiple Images from Database - not working
- Can I build a RDLC report for my website build on .NET 2.0, using Microsoft rdlc designer 2022?
- Error in RDLC report when a visibility change occurs
- How can I create RDLC to display for 2 tables with different condition by using 1 dataset
Related Questions in REPORT-VIEWER2012
- ReportViewer Local report have a cache ? Impossible to replace old report
- not generating report in windows rdlc report viewer 2012
- Reportviewer, Some reports print and others won't
- Done executing task "RdlCompile" -- FAILED Error in Visual Studio 2015
- Reportviewer (RDLC), hide a row on the first page
- Report Viewer Configuration Error on Shared Hosting
- HTTP Error 500.19 - Internal Server Error on ReportViewerWebControlHandler
- Report Viewer limitation
- Creating Reports using ReportViewer with Dynamic Dataset and PostgreSQL DB in WPF
- How to print normal RDLC report despite machine resolution
- Column Chart not Rendering in PDF using ReportViewer Library?
- Asp.net Reportviewer version 12.0 not working with IE 11
- Internet Explorer 11(IE11) and reportviewer
- populating a dataSet component with data from data source
- Microsoft.ReportViewer.ProcessingObjectModel Version 12.0.0.0 missing from Global Assembly Cache
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 # Hahtags
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?
I figured it out.... I wrote code to format account no with asterisks and called the method in RDLC expression.