Column Id (varchar2) shows wrong number.
I checked, everything looks good as for the other columns.
When I click on link which is on ID column
As you can see column Id is 95 for id 1. When I click on id 1:
Id is different number, and for all rows is 9590644622004212.
In this case if something interfers with your text such as comma (,) or a symbol you can escape it as the image below.
Related
I am using this calculated field for one of my reports in Tableau but the visual doesn't show values (numbers with slashes) from my screenshot below. They are blank. I am not sure what is wrong with my regex formula as there are instances that show values correctly (the ones where it says SHOWS in the screenshot).
IF REGEXP_MATCH([Claim Id Match],'^[0-9]') THEN STR(INT([Claim Id Match])) ELSE [Claim Id Match] END
How to return values like 682687119/2022/001?
This is what I have so far:
IF REGEXP_MATCH([Claim Id Match],'^[0-9]') THEN STR(INT([Claim Id Match])) ELSE [Claim Id Match] END
im trying to minimize the words appear in my pbi table.
for eg: i have one of my columns shows
name
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
and i want to format this column to look like this
name
aaa...
i have tried reduce the size of this column but instead it shows
name
aaaa
aaaa
aaaa
once my mouse move on it it will appear the whole content
how could i format this?
Add this calculated column to your table:
short name = RIGHT('Table'[name], 3) & "..."
The result will look like this:
enter image description here
Hello, in screenshot you can see that a value under "sex" column is missing, I have no clue exactly what happened here, only I know is that "10240" is causing it. How to manage with that? I would like to get "10240" value under "type" column, and value "1" under "sex" column.
Just count the number of characters. You told SAS to read SEX from column 5. On the first line column 5 is blank.
It looks like your data has spaces between the values and every variable has a value on every line so just use LIST MODE input instead of COLUMN MODE.
input type sex height weight ;
I have APEX 5 app and want to create Interactive Report region with pl/sql source. What I want is to have some columns as link to another page. But, when I put in select, for example, select d_01, ..., '' || d_26 || '' d_26 I get column d_26 as text a href="f? ..., but not value as link.
What am I doing wrong?
You will have to unescape special characters of the column. Change Columns > Security > Escape special characters property of link column to No
Also, you can do this in a declarative way by changing Column Type from Plain Text to Link and then linking it to the desired page.
I have a classic report 2 columns are coming from the table and the 3rd column is a derived column.
I want to compute the values of the 3rd column based on the value of the 2nd column like if the 2nd column value is 1 then I want to put '-' in the 3rd column if it is >1 then in the 3rd column I want to put 'More than one dates'
And I want to have filters in the 3rd column header with the values that I put, I this case '-' and 'More than one dates'
And when I select the filters I want the report to be filtered accordingly.
I have a put a screen shot of the report.
Please can anyone let me know how to accomplish this.
Any help will be more than welcome
Apex 5.1 and Firefox
Snap Shot of the Report
Your SELECT-Statement should look something like this:
select ULA_ORDER_NUMBER,
COUNT,
CASE WHEN COUNT = 1 THEN '-' ELSE 'More than one dates' END as FILTER
from YOUR_TABLE
For the filter just "double click" on the COUNT column header.
This is what it looks like:
Hope this helps you.