vs code fromat on save adds 2 tabs instead of one tab - tabs

when I try to format the file it adds 2 tabs
instead of just one tab
when I save I get this
I used Tab Size = 2
means that the tab is 2 spaces
but I can not find the number of tabs attribute that I should edit

Related

click icon and open target directly

I have a table in my wiki as below. Right now when I click on the red pdf icon it takes me to the file description page for the target file, myfile.pdf.
Instead, I want it to immediately open the myfile.pdf, not require 2 clicks to get it open.
Below is what that table cell entry looks like (1st row, 2nd col in the table). How do I modify it to do what i want?
[[Image:Pdf_icon.png|20px|link=File:myfile.pdf]]
You can use one of the following methods:
[[Image:Pdf_icon.png|20px|link=Special:FilePath/myfile.pdf]]
or
[[Image:Pdf_icon.png|20px|link={{filepath:myfile.pdf}}]]
The slight difference is that the first method links to an internal special page that automatically redirects to the file, and the second method generates a direct link to the file.

Anchor base not working in uipath for pdf extraction

I want to extract certain text and numbers from a PDF invoice, one of which is the total amount. The thing is that the position of the total amount keeps on changing from pdf to pdf based on how many number of items are there. If there are lot of item then the total amount field will be lower in the pdf and if the number of items are less then the total amount will be higher up in the pdf. See below image for ref. There are only 2 items in the invoice so the total field is at a higher position. But I also have invoices where there are 15 items in the invoice and the total field is either lower in the page or is in the next page.
How do I extract it then? I tried using Anchor base but it is not working!
This is the work I have done till now:
1.) Assign a for loop to open each and every pdf in the folder one by one.
2.) for each pdf, I have assigned a hot key which fits one full page to the window.
3.) Then I am using Anchor Base (total in the image f=given below is the anchor and the amount is the value to be extracted).
4.) Using a message box to print the value
5.) close the pdf
Two potential solutions.
Use UiPath Document Understanding
You can get a certain amount of DU Data on the Community License, then you can setup the templates and use anchor bases, token selection, custom area selectors etc.
Read Lines Approach
Convert the PDF to Text.
Have a look through the extracted Text and find a phrase/keyword that you could use as your anchor. Going by your example you might you "Total: "
Then use Invoke Code (I'll use C# for below example)
Arguments: in_text (the text from the PDF) | out_totalAmount
Code:
var invoiceTotal = File.ReadLines(in_text).Last(e => e.StartsWith("Total: ")).Trim();
out_totalAmount = invoiceTotal.Split(new []{":"}).LastOrDefault();

Is there a way to connect filter box under 2 tabs in superset?

I used Apache superset to design the dashboard. I divide the dashboard into 2 tabs called, "sales" and “details” as you can see in the screenshot. I have included 5 filters in both tabs called "date”, “brand”, “kitchen”, “channel” and “country".
I used the same view for both of the tabs under “sales” and “details”. when I change values on any filter box, the charts have to be updated on both tabs. Not just one tab.
Is there a way to connect that 5-filter box under every 2 tabs?
By default, the filter for one tab should work and pre-applied for another tab within the same dashboard, you can check whether the filter columns are in the tab where the filters are not working. Also, filter box is replaced by proper filters in superset 1.4 which u can see and create in right nav bar

How to don't separate Sheet When SSRS report contain page break and export to excel?

i have a report in SSRS 2017 version 4.8.
i create 3 tab for show different information
and set tab 1 breaklocation is End, Disable is False.
and set tab 2 breaklocation is End, Disable is False.
and set tab 3 breaklocation is None, Disable is False.
Now, when i choose tab 1 and tab 2 and export to excel. it will separate tab 2 of two tab and final tab 2 is a blank page. look like below.
Expect Result, only show one tab1 and one tab2 when i choose tab 1, tab 2 and export to excel
Updated on :08/01/2021
Change breaks for each table to the Start instead of End with no breaks for Tab 1. it would be split one tab(sheet) for show title eg .Title
Another tab is show Data(tab1)
Anybody can give advice ? thanks!
Your issue is due to the table creating a new tab at the END and no new tab 3 table.
Change your breaks for each table to the Start instead of End with no breaks for Tab 1.
This will only add the page breaks when the tab is created. If a table is disabled, the page break won't be created for it.

Update VSCode html tab spacing

I've written an html file using a tab size of 4 set in both User and Workspace parts of the settings options in VSCode.
I'd like to use a tab size of 2. After changing the size from 4 to 2 the html file stays at 4 spacing and hasn't updated the size off all tabs to 2. A tab spacing of 2 is used when I create a new html but I would like to update my current file so that all tabs are spaced with 2 not 4. How can I do this?