Category: Uncategorized

  • Loading Data into Snowflake Table using SnowSQL Client

    Recently, Snowflake has gained momentum in the cloud data warehousing space. Snowflake offers a cloud-based data storage and analytics service, generally known as “data warehouse-as-a-service”. It lets corporate users store and analyze data using cloud-based hardware and software. Snowflake table stores data and there are three types namely: permanent, transient, and transient table. Snowsql is…

  • Hiding Text in Tableau Worksheets

    Just like Microsoft Excel, Tableau uses a workbook and sheet file structure. A workbook contains sheets. A Tableau worksheet has a single view with shelves, legends, cards, and the Data and Analytics panes in its sidebar. A sheet can be a worksheet, a story, or a dashboard. While working with worksheets in Tableau, you might…

  • How to Conditionally Format an EXCEL/CSV file in Alteryx

    Conditional formatting is a feature included in spreadsheet creation programs. It automatically applies formatting to a cell when the data in that cell meets a specific criteria. In this post, I will be sharing with you a video walkthrough on how to conditionally format an Excel or CSV file in Alteryx. Watch the video below:

  • IF Statements in Python

    Conditional Statements in Python are used to decide the flow of execution of a program or code in Python. It’s like telling your program, “Hey, do this particular thing if it meets this condition, or if it doesn’t”. In Python, conditional statements are handled with “IF”. In this article, I am going to walk you through the…